Reputation: 16978
Say I have an app consisting of some preference lists, some toasts, etc. Strings are set both in the XML files and appending/created dynamically in Java sometimes.
How does one go about making the app in like 8 different languages and selling them based on language? Does the android marketplace let you set a dropdown list for language to download in?
Also on the programming side, is having the translations in a word file and then doing copy-and-paste into eclipse going to work?
Perhaps I'm asking in the wrong place, but I'm not too sure where to start here.
Upvotes: 9
Views: 7646
Reputation: 13174
Android has the excellent support for localization. See the official reference. Here is good example.
Upvotes: 3
Reputation: 16363
It's easy. Place your string resources in different XML files:
and so on
Also you can put your layouts to different resources. Everything is described in links provided in other answers
Upvotes: 7
Reputation: 13172
On localization I think you should read this;
Maybe Market Filters can help you with specifict target selling.
Upvotes: 3