How can I create a multilingual android application?

前端 未结 3 1052
鱼传尺愫
鱼传尺愫 2020-11-30 02:04

I would like to create a multilingual android application.

Is there a way to detect what language the user prefers?

Is there a recommended way to manage mult

3条回答
  •  庸人自扰
    2020-11-30 02:48

    Yes, there is a recommended way to manage multiple languages

    Multilanguage support is easy done for android. Create a new values directory for the language with the suffix of the language code. For german: values-de or french: values-fr than copy your string.xml into that and translate each entry. Thats all you need.

    Do android support multiple languages?

    Providing you follow the recommendations, detecting which language the user prefers is automatic.

    Have a read of this:

    http://developer.android.com/guide/topics/resources/localization.html

提交回复
热议问题