Android Lint contentDescription warning

后端 未结 11 1731
情书的邮戳
情书的邮戳 2020-12-07 17:03

I am getting warning as \"[Accessibility] Missing contentDescription attribute on image\" for imageview. while using android lint

What does that mean?

11条回答
  •  独厮守ぢ
    2020-12-07 17:54

    Non textual widgets need a content description in some ways to describe textually the image so that screens readers to be able to describe the user interface. You can ignore the property xmlns:tools="http://schemas.android.com/tools"
    tools:ignore="contentDescription"
    or define the property android:contentDescription="your description"

提交回复
热议问题