Android 呼叫字串資源的方法

2021-05-26 02:49:48 字數 695 閱讀 9827

字串資源的定義

檔案路徑:res/values/strings.xml

字串資源定義示例:

<?

xml version="1.0" encoding="utf-8"

?>

<

resources

>

<

string 

name

="hello"

>

hello!

字串資源的呼叫

在 layout xml 呼叫字串資源:

<

textview

android:layout_width

="fill_parent"

android:layout_height

="wrap_content"

android:text

="@string/hello"

/>

在 activity 獲取字串資源:

this

.getstring(r.string.hello)

從 context 獲取字串資源:

context.getstring(r.string.hello)

參考:string resources

日期:2023年6月4日

Android 呼叫字串資源的幾種方法

字串資源的定義 檔案路徑 res values strings.xml 字串資源定義示例 xml version 1.0 encoding utf 8 resources string name hello hello string resources 字串資源的呼叫 在 layout xml 呼叫...

Android 呼叫字串資源的幾種方法

字串資源的定義 檔案路徑 res values strings.xml 字串資源定義示例 xml version 1.0 encoding utf 8 resources string name hello hello string resources 字串資源的呼叫 在 layout xml 呼叫...

呼叫字串資源的幾種方法

字串資源的定義 檔案路徑 res values strings.xml 字串資源定義示例 xml version 1.0 encoding utf 8 resources string name hello hello string resources 字串資源的呼叫 在 layout xml 呼叫...