views:

22

answers:

1

I want to get the language set by the user in the settings screen. I have checked the DeviceInfo class, but don't see anything.

+2  A: 

Use the function net.rim.device.api.i18n.Locale.getDefaultForSystem() to return the current locale in use, and to get the human representation of the language for that locale, use net.rim.device.api.i18n.Locale.getDisplayLanguage().

birryree
Thanks, it works.