为什么我在Android中的ImageView中收到此警告?
<ImageView
android:id="@+id/user_image"
android:layout_width="30dip"
android:layout_height="30dip" />
答案 0 :(得分:3)
您必须在ImageView中设置属性“android:contentDescription”。
示例:
<ImageView
android:id="@+id/user_image"
android:layout_width="30dip"
android:layout_height="30dip"
android:contentDescription="@string/imageViewDescription" />
抛出此警告是为了确保您的ImageView通过简短的文字描述其内容。