如何配置 lint.xml 文件
你可以在 lint.xml
文件中指定 Lint 检查首选项。如果要手动创建此文件,请将其放在 Android 项目的根目录中。如果你在 Android Studio 中配置 Lint 首选项,则会自动创建 lint.xml 文件并将其添加到你的 Android 项目中。
例:
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<!-- list of issues to configure -->
</lint>
通过在标记中设置严重性属性值,可以禁用问题的 Lint 检查或更改问题的严重性级别。
以下示例显示了 lint.xml
文件的内容。
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<!-- Disable the given check in this project -->
<issue id="IconMissingDensityFolder" severity="ignore" />
<!-- Ignore the ObsoleteLayoutParam issue in the specified files -->
<issue id="ObsoleteLayoutParam">
<ignore path="res/layout/activation.xml" />
<ignore path="res/layout-xlarge/activation.xml" />
</issue>
<!-- Ignore the UselessLeaf issue in the specified file -->
<issue id="UselessLeaf">
<ignore path="res/layout/main.xml" />
</issue>
<!-- Change the severity of hardcoded strings to "error" -->
<issue id="HardcodedText" severity="error" />
</lint>