Possible Duplicate:
How can I create a multilingual android application?
I am creating application and i am in the testing phase, but i want to make my application multilingual.
How can i make it multilingual ?
What is the best way to make it ?
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.
The thing that you need to do is to create new folders in your
resfolder.Example : If you need to add support to spanish and italian you need to do it like this :
res folder
1.1 values
1.2 values-es // spanish
1.3 values-it // italian
And after that you need to create
string.xmlfiles invalues-esandvalues-it. And in all files you just need to create all string which you want to use like this :And after that you can use these string as :
And this should work.