可能重複:
Changing Locale within the app itself如何強制語言在Android應用程序
在我的應用程序需要「力」的語言讓我們說,我有語言環境英語作爲默認拋光和芬蘭語,根據that post我創建的函數也發佈了bellow,函數在createActivity()中調用,但問題是它不起作用....任何想法爲什麼?有什麼建議麼?
private void setLocale(String localeCode){
Locale locale = new Locale(localeCode);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config, getBaseContext().getResources().getDisplayMetrics());
}
只是包裝周圍的一切都有 「如果(newConfig.locale = targetLocale!)」 應該可以解決無限重新開張問題。 – Edison