标签: android
如何以编程方式从默认值文件夹中获取字符串?
答案 0 :(得分:0)
如果该字符串不会出现在本地化的strings.xml中,则在默认的strings.xml中执行此操作:
<string name="my_string" translatable="false">Hello world!</string>
当你使用
getResources().getString(R.string.my_string);
它将返回此值。
确保您的本地化strings.xml没有具有该名称的字符串条目