1. 程式人生 > >Hardcoded string should use @string resource 警告

Hardcoded string should use @string resource 警告

 

在佈局檔案中,文字的設定使用如下寫法時會有警告:Hardcoded string "下一步", should use @string resource

<Button
        android:id="@+id/button1"
        android:layout_width="118dp" 
        android:layout_height="wrap_content"
        android:text="下一步" />

雖然可以正常執行,但是這不是一個好習慣,應該在res/values/strings.xml中設定:

<?xml version="
1.0" encoding="utf-8"?> <resources> <string name="message">下一步</string> </resources>

引用的時候使用

android:text="@string/message"

就行了。這樣做可以做到一改全改,在支援多語言時也是很有用的。另外,顏色的設定也最好在color.xm中類似設定。