Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我更新了 Eclipse 和 SDK,现在在每个 xml 文件中,TextViews 都有警告“考虑通过指定 android:textIsSelectable="true" 来选择文本值”。
是否可以隐藏警告,我讨厌让我的项目带有很多黄色感叹号。
转到项目的属性。转到 Android Lint 首选项。搜索 SelectableText 并将严重性更改为忽略。
您也可以在所有项目的 Eclipse 首选项中执行此操作。
这个警告是有充分理由的。通过禁用它,您基本上忽略了 Android 的用户界面指南,并且您没有充分利用应用程序用户界面的潜力。因此,查看每个文本视图并将此属性显式设置为 false 或 true 将提高您的应用程序的质量。