Android国际化实例

Android国际化实例_第1张图片Android国际化实例_第2张图片

实例

在res文件夹下建立values-zh-rCN、values-en-rUS文件夹
values-zh-rCN文件夹下建立strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <item name="my_name" type="string">包汉青</item>
</resources>

在values-en-rUS文件夹下建立strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <item name="my_name" type="string">baohanqing</item>
</resources>

activity_main.java

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" 
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/my_name"/>

</LinearLayout>

MainActivity.java

package com.example.international;


import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;


public class MainActivity extends Activity {


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}

中文语音状态下显示中文名字,调成英文状态之后,显示英文名字

你可能感兴趣的:(Android国际化实例)