[Android] hardcoded string should use @string警告

在layout文件夹下编辑Activity_Main.xml文件时,如果采用以下写法编译器会给出警告:

<buttuon 
    android:id="@+id/button"
    android:layout_width="fill_parent"
	android:layout_height="wrap_content"
	android:text=“按钮的标题"
     />


正确的写法:

1、首先在values文件夹的string.xml文件定义一个表示按钮标题的string常量

<string name="button_title">使用Applicaiton传递数据</string>


2、引用的时候这样写:

<buttuon 
    android:id="@+id/button"
    android:layout_width="fill_parent"
	android:layout_height="wrap_content"
	android:text="@string/button_title"
     />


你可能感兴趣的:([Android] hardcoded string should use @string警告)