On Wed, Jul 21, 2010 at 10:02 AM, Engin Arslan <[email protected]> wrote: > How can I support multi language for my application instead of > changing Locale Configuration?
Don't use string resources. String resources are designed to support Android's configuration framework, where the user's language is set in the Settings application for the entire device. Android's configuration framework is not designed to support per-app language choices, at least not at this time, AFAICT. So, just implement your own string management and skip the string resources, and you can make your app do whatever you want. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 3.1 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

