'Missing contentDescription attribute on image' in XML

后端 未结 9 2174
挽巷
挽巷 2020-11-28 17:49

I get an warning about [Accessibility]Missing contentDescription attribute on image in eclipse. This warning show at line 5 (declare ImageView)

9条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-28 18:38

    This warning tries to improve accessibility of your application.

    To disable missing content description warning in the whole project, you can add this to your application module build.gradle

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

提交回复
热议问题