Sorry, I am new to Fragments. I am using a Fragment like this:
<fragment
android:name="com.example.lesson1.Fragment1"
android:id="@+id/activity_fragment1"
android:layout_weight="1"
android:layout_width="0px"
android:layout_height="match_parent"
/>
I know the name attribute reference to a class in src folder, but:
- What exactly the attribute android:name="com.example.lesson1.Fragment1"
does here?
- What is its usage?