在android XML中缺少图像上的contentDescription属性

时间:2013-07-06 17:08:10

标签: android xml imageview

为什么我在Android中的ImageView中收到此警告?

    <ImageView
        android:id="@+id/user_image"
        android:layout_width="30dip"
        android:layout_height="30dip" />

1 个答案:

答案 0 :(得分:3)

您必须在ImageView中设置属性“android:contentDescription”。

示例:

<ImageView
    android:id="@+id/user_image"
    android:layout_width="30dip"
    android:layout_height="30dip" 
    android:contentDescription="@string/imageViewDescription" />

抛出此警告是为了确保您的ImageView通过简短的文字描述其内容。