mrd
mrd

Reputation: 4699

Check which Locale is running in Android

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

Upvotes: 3

Views: 3164

Answers (1)

ACC
ACC

Reputation: 2560

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

both will return strings

Upvotes: 6

Related Questions