2017-02-15 54 views
0

我想在XML與tools:ignore屬性忽略拼寫錯誤,但它不工作...工具:忽略不使用XML

任何想法,爲什麼不呢?

注:我不想全局禁用錯字檢查,特定文件

只是特定的屬性我已經試過:

<TextView 
    tools:ignore="all" 
    android:id="@+id/labl" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"/> 

其中xmlns:tools="http://schemas.android.com/tools"

和:

<!--suppress all --> 
<TextView 
    android:id="@+id/labl" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"/> 

(注意labl給出了錯誤警告)

我已經嘗試了幾個文件,但每個都產生了相同的結果。

回答

0

轉到檢查>拼寫檢查>錯字並取消選中它。 enter image description here

+0

謝謝,但我不想禁用每個文件,只是特定文件的特定屬性。 – doovers