【问题标题】:Missing contentDescription attribute on image in android XMLandroid XML中的图像缺少contentDescription属性
【发布时间】:2013-07-06 17:08:10
【问题描述】:

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

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

【问题讨论】:

标签: android xml imageview


【解决方案1】:

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

例子:

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

抛出这个警告是为了确保你的 ImageView 用简短的文字描述了他的内容。

【讨论】:

    猜你喜欢
    • 2012-04-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-11-03
    • 1970-01-01
    相关资源
    最近更新 更多