更改Locate后刷新字符串

时间:2013-07-23 12:18:12

标签: android resources locate

在我的主要活动中,我有TabHostActivities作为标签,其中一个我更改了Locate以获取特定字符串,这就是方法:

private void changeLanguage(String language) {
    Locale mLocale = new Locale(language);
    Locale.setDefault(mLocale);
    Configuration config = new Configuration();
    config.locale = mLocale;

    getBaseContext().getResources().updateConfiguration(config,
            getBaseContext().getResources().getDisplayMetrics());

}

在调用setContentView()之前,字符串不会更改。 (更改设备方向以调用onCreate())。

如何为其他活动调用setContentView()或在返回到acitivity的屏幕后调用method

0 个答案:

没有答案