获取string.xml中的字符

前端之家收集整理的这篇文章主要介绍了获取string.xml中的字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在activity里:

方法一:this.getString(R.string.resource_name);

方法二:getResources().getString(R.string.resource_name);

在其他java文件(必须有Context或aplication)

方法一: context.getString(R.string.resource_name);

方法二: application.getString(R.string.resource_name);

备注:如何获取aplication

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:name="com.e.e.App"
>

public class App extends Application{
public static App app;
@Override
public void onCreate() {
// TODO Auto-generated method stub
super.onCreate();
app = this;

}

}

使用的时候App.app.getString(R.string.resource_name);

原文链接:https://www.f2er.com/xml/299637.html

猜你在找的XML相关文章