ChatGPT解决这个技术问题 Extra ChatGPT

Android Lint 内容描述警告

对于 imageview,我收到警告为“[Accessibility] 图片上缺少 contentDescription 属性”。在使用 android lint 时

这意味着什么?

这是一个非常烦人的警告 - 特别是对于那些只是为了风格的图像
我在 strings.xml: <string name="none"></string> 中定义了它,然后我使用了 android:contentDescription="@string/none"

H
Hasturkun

通过为我的 ImageView 设置属性 android:contentDescription 解决了此警告

android:contentDescription="@string/desc"

ADT 16 中的 Android Lint 支持会引发此警告,以确保图像小部件提供 contentDescription。

这定义了简要描述视图内容的文本。此属性主要用于可访问性。由于某些视图没有文本表示,因此此属性可用于提供此类。

像 ImageViews 和 ImageButtons 这样的非文本小部件应该使用 contentDescription 属性来指定小部件的文本描述,以便屏幕阅读器和其他辅助工具可以充分描述用户界面。


您可以通过以下方式阅读更多信息并自行测试:android-developers.blogspot.com/2012/04/…developer.android.com/guide/topics/ui/accessibility/…
D
Dane White

禁用 Lint 警告很容易让您以后遇到麻烦。你最好只为所有的 ImageView 指定 contentDescription。如果您不需要描述,则只需使用:

android:contentDescription="@null"

G
Gunnar Bernstein

另一种选择是单独禁止警告:

xmlns:tools="http://schemas.android.com/tools"  (usually inserted automatically)
tools:ignore="contentDescription"

例子:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    tools:ignore="contentDescription" >

       <ImageView
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:adjustViewBounds="true"
            android:padding="5dp"
            android:src="@drawable/icon" />

不正确 - 将 tools:ignore="contentDescription" 添加到 RelativeLayout 导致编译错误“属性缺少 Android 命名空间前缀”
这是一个日食问题。只需清理您的项目。并确保: xmlns:tools="schemas.android.com/tools" 也包括在内!
C
Christ

我建议您添加 contentDescription。

android:contentDescription="@string/contentDescriptionXxxx"

但是,让我们现实一点。大多数人不会为了可访问性而维护文字。尽管如此,您还是可以毫不费力地实施一些措施来帮助残疾人。

<string name="contentDescriptionUseless">deco</string>
<string name="contentDescriptionAction">button de action</string>
<string name="contentDescriptionContent">image with data</string>
<string name="contentDescriptionUserContent">image from an other user</string>

.

盲人用户需要知道的最重要的事情是“我需要单击以继续的按钮在哪里”

对任何可点击的内容使用 contentDescriptionAction。

将 contentDescriptionContent 用于带有信息的图像(graph、textAsImage、...)

对所有用户提供的内容使用 contentDescriptionUserContent。

其余的使用 contentDescriptionUseless。


谢谢!提供此描述而不是抑制警告始终是最佳选择。
S
Sergio Carneiro

因为它只是一个警告,你可以抑制它。转到 XML 的图形布局并执行以下操作:

点击右上角红色按钮 选择“禁用问题类型”(例如)


诚然,您可以禁止它,但您可能应该遵循所选答案的建议,以便依赖 Android 提供的辅助工具的用户。
就是这个!!!这就是我要找的。这个答案和@Gunnar Bernstein 的答案让我明白了。
G
GianhTran

转到 Gradle 文件(模块应用程序),添加以下代码块

android {
    ... 
    lintOptions {
        disable 'ContentDescription'
    }
    ...
}

没有更多的警告!快乐编码


愉快的编码,但请注意,这会损害真正依赖它的人的可访问性
A
Alexander Bernat

如果您想以优雅的方式抑制此警告(因为您确定此特定 ImageView 不需要可访问性),您可以使用特殊属性:

android:importantForAccessibility="no"

Y
Yvgen

ContentDescription 需要 Android 可访问性。特别是对于屏幕阅读器功能。如果您不支持 Android 辅助功能,您可以通过设置 Lint 忽略它。

所以只需创建 lint.xml

<?xml version="1.0" encoding="UTF-8"?>
<lint>

    <issue id="ContentDescription" severity="ignore" />

</lint>

并将其放入 app 文件夹。

https://i.stack.imgur.com/kEKrf.png


A
AnhSang

对于纯装饰性的图形元素,将它们各自的 android:contentDescription XML 属性设置为“@null”。

如果您的应用仅支持运行 Android 4.1(API 级别 16)或更高版本的设备,您可以改为将这些元素的 android:importantForAccessibility XML 属性设置为“no”


android:importantForAccessibilty 正是我想要的。谢谢!
这确实是正确答案,应该是最上面的答案。
F
Fokou Franklin

非文本小部件需要以某种方式以文本方式描述图像的内容描述,以便屏幕阅读器能够描述用户界面。您可以忽略属性 xmlns:tools="http://schemas.android.com/tools"
tools:ignore="contentDescription"
或定义属性 android:contentDescription="your description"


a
alexander.polomodov

因为我需要 ImageView 来添加一个图标只是为了美观,所以我在我的 xml 文件中的每个 ImageView 中添加了 tools:ignore="ContentDescription"

我不再收到任何错误消息