如何在Eclipse中管理Lint忽略/排除列表?

时间:2013-04-04 08:58:23

标签: android xml eclipse android-lint

在Android项目的Eclipse中,我在xml文件中有一些警告,并通过快速修复窗口使用“禁用仅检入此文件”在Lint忽略/排除列表中添加了一些警告。

现在我想从列表中删除一个文件以便再次检查。

如何在Eclipse中管理Lint文件检查排除?

我无法在stackoverflow或google搜索中找到任何解决方案。

1 个答案:

答案 0 :(得分:2)

我找到了一个解决方案,即使它不是通过Eclipse IDE。

我只是手动删除lint.xml中的行。

<?xml version="1.0" encoding="UTF-8"?>
<lint>
    <issue id="SelectableText">
        <ignore path="res\layout\my_activity.xml" />
    </issue>
    <issue id="TooManyViews">
        <ignore path="res\layout\my_other_activity.xml" />
    </issue>
</lint>

例如删除

<ignore path="res\layout\my_activity.xml" />

为了在my_activity.xml中重新启用selectabeText警告。

如果有人通过Eclipse IDE找到解决方案,我会打开这个问题。