//任何人都可以解释一下这两个差异吗?我非常感谢你的回复。
<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" />
答案 0 :(得分:1)
一个是指一些名为com.example.MyImageView
的自定义窗口小部件。另一个是指标准的Android ImageView
小部件。