定義一個(gè)應(yīng)用程序名的字符串,有兩種引用方式:
1荚坞,在代碼中,通過R.string.hello_world可以獲得該字符串的引用菲盾。
2颓影,在XML中,通過@string/hello_world可以獲得該字符串的引用懒鉴。
其中诡挂,string部分是可以替換成其他的哈肖,譬如圖片資源就替換成 drawable 肴裙,如果是引用圖標(biāo)就替換成 mipmap,如果是布局文件就替換成 layout 。
eg: (xml文件)
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
</application>