Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get notified when system locale changes in Android?

I'm regularly passing phone's locale as part of URL to the server.

private static String getLocaleStr() {
     Locale locale = Locale.getDefault();
     return locale.getLanguage() + locale.getCountry();
}

I don't want to recall getLocalStr() every time I generate a URL. Is there a way to get notified when system locale changes?

like image 528
aligf Avatar asked Feb 15 '12 15:02

aligf


1 Answers

An Intent is broadcast for this:

http://developer.android.com/reference/android/content/Intent.html#ACTION_LOCALE_CHANGED

like image 120
jsmith Avatar answered Oct 24 '22 02:10

jsmith