Android Lint contentDescription warning

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

    ContentDescription needed for the Android accessibility. Particularly for the screen reader feature. If you don't support Android accessibility you can ignore it with setup Lint.

    So just create lint.xml.

    
    
    
        
    
    
    

    And put it to the app folder.

提交回复
热议问题