为什么fragment
有属性class
而anImageView
没有?为什么我们需要这个class
属性?例如,考虑:
<fragment class="com.expample.testfragment.Title"
android:id="@+id/title"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
/>
并且:
<ImageView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Img1"
android:layout_width="150dp"
android:layout_height="150dp"
android:scaleType="fitXY"
/>