Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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());
    }
share|improve this question

marked as duplicate by Kev Jun 18 '12 at 22:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

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?

share|improve this answer
1  
Just wrap everything around a "if(newConfig.locale!=targetLocale)" should resolve the infinite relaunch problem. – Edison Feb 21 at 3:59

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

android:configChanges="locale"

thanks Deepak

share|improve this answer
It's already there... sorry I forget to write that ;) – Robert Jun 21 '11 at 7:49

Not the answer you're looking for? Browse other questions tagged or ask your own question.