android XML中图像上缺少contentDescription属性

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

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

解决方法:

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

范例:

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

发出此警告以确保您的ImageView通过简短文字描述其内容.

上一篇:使用Picasso图像的Java OutOfMemoryError


下一篇:c++ 常用数据接口 set