tools:ignore
ignore属性是告诉Lint忽略xml中的某些警告。
假设我们有一个ImageView
Lint会提示该ImageView缺少android:contentDescription属性。图片这种添加android:contentDescription可以被TalkBack识别,这样就会告诉有视觉障碍的用户。android系统会自动使用人声朗读控件上android:contentDescription属性说指向的内容。这样用户就可以知道这个控件是做什么用的。这个属性的主要功能就是为视力有障碍的人增加对控件的解释。
android:contentDescription的介绍和使用见原文链接:
http://blog.csdn.net/yuxiaohui78/article/details/41206179
tools:ignore=
"contentDescription"
原文链接:http://blog.csdn.net/meegomeego/article/details/49176055