如何配置 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>