我们的应用程序对它强制执行某个位置, 而不取决于设备设置 。 这是在字符串翻译正确之前的临时决定 。
Configuration config = sContext.getResources().getConfiguration();
if (!sDefaultLocale.equals(config.locale)) {
Locale.setDefault(sDefaultLocale);
config.locale = sDefaultLocale;
sContext.getResources().updateConfiguration(config,
sContext.getResources().getDisplayMetrics());
}
不幸的是, 强制本地端不使用应用程序部件, 部件仍然使用设备本地端 。 我正寻找一种方法让应用程序部件使用相同的本地端 。 @ info: whatsthis