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

android:diff b/w com.example.MyImageView和ImageView?,android,imageview,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"

//谁能给我解释一下这两者的区别吗?我非常感谢你的答复

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


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

您对
com.example.MyImageView
的声明是什么?
com.example.MyImageView
肯定不是Android API的一部分。感谢您的快速回复。