[Android] App Internationalization Support (English/Japanese localization)

Tadashi Shigeoka ·  Thu, April 18, 2013

I’ll introduce how to handle app internationalization (English/Japanese localization) in Android.

For example, if you want the app name to be in English by default, but display in Japanese when the language setting is Japanese, you would set it up as follows:

res/values/strings.xml



    SpamApp

res/values-ja/strings.xml



    スパムアプリ

Reference Information

That’s all from the Gemba.