How to get know language (locale) currently Android app uses to display texts to user?
I know I can use Locale.getDefault() to get default OS locale. Bu
It's on your app configuration, so you can get it with :
getResources().getConfiguration().locale
this is different from
Locale.getDefault()
and shows the Locale that the app uses which can be different.
It can be different because the developer can change it by updating the app configuration, check : Resources.updateConfiguration