3

昨天我再次安装了 ADT 插件,因为我已经拥有的版本出现问题(间歇性)。问题是,我的所有 xml 资源都没有收到警告。我很确定我以前没有出现过它们。其中一些很烦人,因为我对此无能为力:

Nested weights are bad for performance
The resource R.attr.TextAppearance_Group_Small appears to be unused
Replace "..." with ellipsis character (…, …)?

我必须解决的其他问题包括:

This tag and its children can be replaced by one <TextView/> and a compound drawable
[Accessibility] Missing contentDescription attribute on image

有没有办法抑制这些警告?我们有一个零容忍政策,不允许我们签入带有警告的代码?

4

1 回答 1

11

这些是针对 android 的新lint工具的警告,该工具是与最新工具一起引入的。您可以在 Eclipses 首选项中更改消息的优先级。

Window -> Preferences -> Android -> Lint Error Checking

在此处输入图像描述

请注意,这只会影响您的本地安装。隐藏这些消息不会解决根本问题。我想有人在具有不同偏好的不同机器上检查您的代码可能会收到警告。

于 2011-12-20T13:04:36.707 回答