Language switching for Android applications

Source: Internet
Author: User

Recently, the language switching function was used in the project. The first thought was the resource file. That's right.

Create a folder values-en in the resource file and create a strings in it. XML, put strings in the default values folder. copy the content in XML to strings in values-en. XML, and then convert the Chinese content in the folder to English, for example, <string name = "set"> set </string> to <string name = "set"> set </string>

Then write a method in the main activity.

Code:

Public void switchlanguage (locale ){
Configuration Config = getresources (). getconfiguration (); // get the setting object
Resources resources = getresources (); // obtain the res resource object
Displaymetrics dm = resources. getdisplaymetrics (); // obtain screen parameters, such as resolution and pixels.
Config. locale = locale; // Simplified Chinese
Resources. updateconfiguration (config, DM );
}

Must be called in the oncreate Function

It should also be noted that you need to configure it in androidmanifest. xml

Add this attribute to the activity node: Android: configchanges = "locale"

Add permission: <uses-Permission Android: Name = "android. Permission. change_configuration"/>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.