码迷,mamicode.com
首页 > 移动开发 > 详细

Android 调用资源字符串的几种方法

时间:2015-10-12 17:12:27      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

在 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);

 

从 Application 获取字符串资源:

application.getString(R.string.hello);

// TBKTApplication.getInstance().getString(R.string.api_url)

Android 调用资源字符串的几种方法

标签:

原文地址:http://www.cnblogs.com/weiok/p/4872102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!