-1

//谁能解释一下这两者的区别是什么?非常感谢您的回复。

 <com.example.MyImageView
        android:id="@+id/Image1"
        android:src="@drawable/photo1"
        android:layout_weight="50" 
        android:adjustViewBounds="true"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="50"
        android:src="@drawable/icon" />
4

1 回答 1

1

一个是指一些名为com.example.MyImageView. 另一个是指标准的 AndroidImageView小部件。

于 2013-08-15T18:20:55.047 回答