Check which language works in Android

How do I programmatically check which Locale is currently running on a device?

+3
source share
1 answer

Locale.getDefault().toString() or context.getResources().getConfiguration().locale.getDisplayName()

both return strings

+6
source

All Articles