在Android工作室中忽略特定文件

时间:2015-09-20 06:10:45

标签: android android-studio

我想忽略Android Studio中特定文件的拼写检查警告。我试过这个,但这似乎相当于SuppressLint而不是SuppressWarning。 http://developer.android.com/tools/debugging/improving-w-lint.html

以下是我想要做的事情的例子

<?xml version="1.0" encoding="utf-8"?>
<lint>
    <issue id="SpellCheckingInspection" severity="typo">
        <ignore path="app/src/main/res/values/local_values.xml" />
        <ignore path="app/src/main/res/values/strings.xml" />
        <ignore path="app/src/main/AndroidManifest.xml" />
    </issue>
</lint>

有什么想法吗?

2 个答案:

答案 0 :(得分:1)

您可以防止对如下评论进行 lint 检查;

enter image description here

<块引用>

点击黄色灯并转到

“错别字:更改为...” -> “编辑检查配置文件设置”

<块引用>

和检查窗口将打开如下;

enter image description here

<块引用>

然后取消选中“处理评论”选项并按确定按钮。

完成这些步骤后,打字错误下划线和打字错误提示将消失。

答案 1 :(得分:0)

目前无法忽略特定文件的拼写检查