Android如何实现语言切换

在Android應用中,為了適應不同國家和地區的語言文字,通常需要國際化。當用戶的手機系統語言發生改變時,應用中的語言也會改變成系統語言。但有時用戶并不希望在系統設置裡面進行語言切換,因為這樣會使其他應用的語言也會改變,當用戶只希望當前應用的文字語言改變時,就需要在Android代碼中實現語言切換的功能。現在我們就來談談如何在Android代碼中實現語言切換功能。

獲取系統語言:

Resources res=getResources();

Configuration config=res.getConfiguration();

Locale locale=config.locale;

String displaylanguage=locale.getDisplayLanguage();//顯示語言(中文-英文)

String language=locale.getLanguage();//語言代號(zh-en)

設置當前應用的語言環境:

Resources res=this.getResources();

DisplayMetrics dm=res.getDisplayMetrics();

Configuration config=res.getConfiguration();

config.locale=Locale.CHINESE;//這裡設置為中文

res.updateConfiguration(config, dm);//修改語言配置

需要注意的是以上代碼應該放在啟動頁中且先于佈局加載調用。放在啟動頁中才能使整個項目語言環境都能夠生效,先于佈局加載調用才能馬上使當前頁面語言設置生效,否則只有退出再進入的時候語言設置才會生效。

下面貼上一段完整代碼實現中英文切換(銷毀后再次進入依舊能夠保存上一次的語言設置):

package com.wunian.language;

import java.util.Locale;

import android.app.Activity;

import android.app.AlertDialog;

import android.content.Context;

import android.content.DialogInterface;

import android.content.Intent;

import android.content.SharedPreferences;

import android.content.SharedPreferences.Editor;

import android.content.res.Configuration;

import android.content.res.Resources;

import android.os.Bundle;

import android.util.DisplayMetrics;

import android.util.Log;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.Toast;

public class MainActivity extends Activity {

private Button changeLanguage,newActivity ;

Locale[] language=new Locale[]{Locale.CHINESE,Locale.ENGLISH};

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

int pos=getSavedLanguage();//獲得上一次保存的語言ID

setLanguage(pos);//語言設置應在佈局加載之前調用,否則本頁面的文字將不會被改變

setContentView(R.layout.activity_main);

changeLanguage=(Button) findViewById(R.id.btnChangeLanguage);

newActivity=(Button) findViewById(R.id.btnNextActivity);

checkLanguage();//檢查上一次登錄設置的語言

changeLanguage.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

//彈出語言選擇對話框

AlertDialog.Builder dialog=new AlertDialog.Builder(MainActivity.this);

dialog.setTitle("選擇語言")

.setItems(new String[]{"中文","英文"},new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

setLanguage(which);

saveLanguage(which);

dialog.dismiss();

Intent intent=new Intent(MainActivity.this,MainActivity.class);

//刷新Activity

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |Intent.FLAG_ACTIVITY_CLEAR_TASK);

startActivity(intent);

}

}).create().show();

}

});

//調到下一個Activity

newActivity.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

startActivity(new Intent(MainActivity.this,NewActivity.class));

}

});

}

public void checkLanguage(){

//這樣獲得的是操作系統的語言

//獲得APP系統語言(中文-英文)

Resources res=getResources();

Configuration config=res.getConfiguration();

Locale locale=config.locale;

String displaylanguage=locale.getDisplayLanguage();//顯示語言(中文-英文)

String language=locale.getLanguage();//語言代號(zh-en)

//Toast.makeText(getApplicationContext(), "LANGUAGE:"+language, 0).show();

}

//保存語言ID

public void saveLanguage(int id){

SharedPreferences preferences=getSharedPreferences("language", Context.MODE_PRIVATE);

Editor editor=preferences.edit();

editor.putInt("languageId",id);

editor.commit();

Toast.makeText(getApplicationContext(), "saveLanguage:"+id, 0).show();

}

//獲得上一次語言ID

public int getSavedLanguage(){

SharedPreferences preferences=getSharedPreferences("language", Context.MODE_PRIVATE);

int languageId=preferences.getInt("languageId", 0);

Toast.makeText(getApplicationContext(), "getSavedLanguage:"+languageId, 0).show();

return languageId;

}

//設置語言ID

public void setLanguage(int pos){

Resources res=this.getResources();

DisplayMetrics dm=res.getDisplayMetrics();

Configuration config=res.getConfiguration();

config.locale=language[pos];

res.updateConfiguration(config, dm);

}

}

你可能感兴趣的:(Android如何实现语言切换)