views:

128

answers:

1

Hi, can anyone tell me how I programmatically retrieve the actual Locale and/or Language in Android ?

+2  A: 

I think you mean the locale of the phone:

Locale myPhoneLocale = Locale.getDefault();
Fernando Miguélez