从默认值文件夹中获取字符串(无语言环境)

时间:2016-04-15 14:20:42

标签: android

enter image description here

如何以编程方式从默认值文件夹中获取字符串?

1 个答案:

答案 0 :(得分:0)

如果该字符串不会出现在本地化的strings.xml中,则在默认的strings.xml中执行此操作:

<string name="my_string" translatable="false">Hello world!</string>

当你使用

getResources().getString(R.string.my_string);

它将返回此值。

确保您的本地化strings.xml没有具有该名称的字符串条目