Android Lint contentDescription warning

后端 未结 11 1734
情书的邮戳
情书的邮戳 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:50

    If you want to suppress this warning in elegant way (because you are sure that accessibility is not needed for this particular ImageView), you can use special attribute:

    android:importantForAccessibility="no"
    

提交回复
热议问题