Android之获取string.xml文件里面的方法

Posted CXQDCXQD

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android之获取string.xml文件里面的方法相关的知识,希望对你有一定的参考价值。

获取string.xml文件里面的方法

在此做个笔记:

1.在androidManifest.xml与layout等xml文件里:

android:text="@string/resource_name" 

  

2.在activity里:

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

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

 

3.在其他java文件(必须有Context或pplication)

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

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

以上是关于Android之获取string.xml文件里面的方法的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio如何轻松整理字符串到string.xml中

如何从 android 中的 string.xml 读取值?

android 开发 string.xml 里面的<drawable name="33f"></drawable> 这个是写路径的吗

Android应用程序的strings.xml文件中只能存放一些字符串常量信息。

Android开发之Activity(cho1)篇

android中string.xml中%1$s%1$d等的用法