how to force language in android application [dupl

2019-02-04 20:47发布

Possible Duplicate:
Changing Locale within the app itself

in my application I need to "force" language let's say that I have locale in english as default polish and finnish, according to that post I had created function posted also bellow, function is called in createActivity(), but the problem is it does not work.... any idea why? Any suggestions?

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());
    }

2条回答
成全新的幸福
2楼-- · 2019-02-04 21:17

Here is what I got so far. I know this question is resolved, but my solution is easier and more compact. No other changes are needed, no android:configurationChanges attribute for all activities in your manifest.

public class SigmaMiddleEastApplication extends PPGApplication {

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        newConfig.locale = Locale.ENGLISH;
        super.onConfigurationChanged(newConfig);

        Locale.setDefault(newConfig.locale);
        getBaseContext().getResources().updateConfiguration(newConfig, getResources().getDisplayMetrics());
    }
}

BEWARE this may cause problems: What could cause an Android activity to relaunch itself infinitely when returning from camera?

查看更多
做自己的国王
3楼-- · 2019-02-04 21:28

Add the following in the manifest (for every activity) :

android:configChanges="locale"
查看更多
登录 后发表回答