I’m trying to know whether it is possible to change the default android OS language to other. For which the language is not in the settings for instance: how to set the device ‘s language to burmese programmatically.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use this to change the language by programmatically–
Write the countrycode of language in place of “en_US” whatever language you want…like for japanese–“ja_JP” For Arabic–“ar” or check this link for code of country–
http://code.google.com/apis/igoogle/docs/i18n.html
And make a folder in res/values-ja for japanese or res/values-ar for arabic..
And make string.xml file And put the languages whatever you want on your layout.. It will fetch the default language from values folder otherwise you want it manually then it will fetch from your external folder values-ar etc. like…
Its example of res/values-ar for arabic—
Hope It will help you..