tags:

views:

39

answers:

1

Hello , is there any way to retrieve phone info such as language so that i can use that to auto adjust the program based on the phone language ?

//Thx in advance

+2  A: 

You should probably read about localization for Android. It's probably as simple as including a text file that has all of your strings and the conversion strings in it. From there when your application is deployed it reads in these strings. You shouldn't want to manage this by yourself.

Android Development - Localization

David McGraw
Thank you, going to check it out :)
Krewie