Reputation: 4699
How do I programmatically check which Locale is running currently on the device?
Upvotes: 3
Views: 3164
Reputation: 2560
Locale.getDefault().toString()
or
context.getResources().getConfiguration().locale.getDisplayName()
both will return strings
Upvotes: 6