[Android]调用字符串资源的几种方法
时间:2011-06-04 来源:黎波
字符串资源的定义
文件路径:res/values/strings.xml
字符串资源定义示例:
<resources>
<string name="hello">Hello!</string>
</resources>
字符串资源的调用
在 Layout XML 调用字符串资源:
<TextViewandroid:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
在 Activity 获取字符串资源:
从 Context 获取字符串资源:
从 Application 获取字符串资源:
参考:
作者:黎波
博客:http://bobli.cnblogs.com/
日期:2011年6月4日
相关阅读 更多 +