Sub Activity_Create(FirstTime As Boolean)
Log(GetDefaultLanguage)
End Sub
Sub GetDefaultLanguage As String
Dim r As Reflector
r.Target = r.RunStaticMethod("java.util.Locale", "getDefault", Null, Null)
Return r.RunMethod("getDisplayName")
End Sub
This would be interesting.. not to use the extended description but only the language code such as ES, US, PT, FR, DE, etc..does someone know were to find language code ?
is the language code same as country ?