Reputation: 249
Locale locale = new Locale(language);
Locale.setDefault(locale);
Resources res = context.getResources();
Configuration config = new Configuration(res.getConfiguration());
config.locale = locale;
I have tried above code but it is not working on Android N but working on Pie device. How can we update the locale for all android versions?
Upvotes: 0
Views: 319
Reputation: 91
Feel free to read this good article.
https://androidwave.com/android-multi-language-support-best-practices/
Thanks, Rhen
Upvotes: 1