android问题集锦之十八:Missing contentDescription attribute on image

Image相关控件如ImageView和ImageButton都会出现这个警告,对,这只是一个警告。

原因是没有设置contentDescription(为一些没有文字描述的view加上描述)。

具体的好处我还没有完全明晰,希望用过之后会总结一下。

在加上这个属性还有助于代码风格的优雅,比如官方提示的:

android:contentDescription="@string/desc"



你可能感兴趣的:(android问题集锦之十八:Missing contentDescription attribute on image)