Android从其他维度值文件中获取String

时间:2016-09-11 12:41:14

标签: android

我知道你可以从其他语言环境中获取字符串,例如strings-de.xml更改语言区域:

Locale locale = new Locale("de");
Configuration config = new Configuration();
config.locale = locale;
getResources().updateConfiguration(config, null);
getResources().getString(R.string.local_string);


但我想让strings位于我的values-w1200dp文件夹中,因此我想更改dimension以获取string ressource

我该怎么做?

0 个答案:

没有答案