android:diff b / w com.example.MyImageView和ImageView?

时间:2013-08-15 18:19:38

标签: android imageview

//任何人都可以解释一下这两个差异吗?我非常感谢你的回复。

 <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" />

1 个答案:

答案 0 :(得分:1)

一个是指一些名为com.example.MyImageView的自定义窗口小部件。另一个是指标准的Android ImageView小部件。

相关问题