满意答案
wustguangh 19级 2015-01-30 18:30:12
Android提供了多种方式调用资源字符串,包括通过ID在布局XML文件调用,使用Activity,Context和Application在代码中调用。
1.字符串资源的定义
文件路径:res/values/strings.xml
字符串资源定义示例:
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello!</string> </resources>
2.字符串资源的调用
在 Layout XML 调用字符串资源:
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" />
3.在 Activity 获取字符串资源:
this.getString(R.string.hello)
4.从 Context 获取字符串资源:
context.getString(R.string.hello)
5.从 Application 获取字符串资源:
application.getString(R.string.hello)