aligf
aligf

Reputation: 2060

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?

Upvotes: 9

Views: 10896

Answers (1)

Related Questions