1. 程式人生 > >Android 專案開發填坑記

Android 專案開發填坑記

如果移動端訪問不佳,請訪問–> Github版

關鍵詞:Android7.0系統語言順序不一致

獲取系統當前語言是一個比較常用的功能,在 Android 7.0 系統上舊函式獲取到的當前系統語言並不正確,或者說從 Android 7.0 起,Android 系統語言的規則變了。

背景

下面是未適配 Android 7.0 的程式碼:

// 獲取 Locale 的方式有二
Locale locale = getResources().getConfiguration().locale;
Locale locale = Locale.getDefault();
// 獲取當前系統語言
locale.getLanguage();

由於僅僅根據 getLanguage() 無法全面的瞭解當前的系統語言資訊,比如簡體中文和繁體中文的 Language 都是 zh,所以還需要 getCountry() 方法獲取地區資訊,我們就能得到 zh-CNzh-HK/zh-TW

總結一下就是:

// 獲取 Locale 的方式有二
Locale locale = getResources().getConfiguration().locale;
Locale locale = Locale.getDefault();
// 獲取當前系統語言
String lang = locale.getLanguage() + "-"
+ locale.getCountry();

但是,在 Android 7.0 上:getResources().getConfiguration().locale 被標記為 deprecated 了,所以初步適配後是:

Locale locale;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
    locale = getResources().getConfiguration().getLocales().get(0);
} else {
    locale = getResources().getConfiguration().locale;
}
//或者僅僅使用 locale = Locale.getDefault(); 不需要考慮介面 deprecated(棄用)問題
String lang = locale.getLanguage() + "-" + locale.getCountry();

從 Android 7.0 起使用的getResources().getConfiguration().getLocales() 返回的是一個 LocaleList 物件,它包含 >=1 個 Locale,內容項可由使用者增刪,順序可由使用者調整。但是,此介面返回的語言順序和使用者定義的順序不一定一致

測試語言順序

原文地址: h ttp://blog.csdn.net/ys743276112/article/details/71547134
測試核心程式碼:

Locale locale = Locale.getDefault();
MLog.e(locale.getLanguage() + "-" + locale.getCountry());

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
    LocaleList localeList = getResources().getConfiguration().getLocales();
    for (int i = 0; i < localeList.size(); i++) {
        MLog.e(i + " >1> " + localeList.get(i).getLanguage() + "-" + localeList.get(i).getCountry());
    }

    LocaleList localeList2 = LocaleList.getAdjustedDefault();
    for (int i = 0; i < localeList2.size(); i++) {
        MLog.e(i + " >2> " + localeList2.get(i).getLanguage() + "-" + localeList2.get(i).getCountry());
    }

    LocaleList localeList3 = LocaleList.getDefault();
    for (int i = 0; i < localeList3.size(); i++) {
        MLog.e(i + " >3> " + localeList3.get(i).getLanguage() + "-" + localeList3.get(i).getCountry());
    }

    LocaleList localeList4 = LocaleList.getEmptyLocaleList();
    for (int i = 0; i < localeList4.size(); i++) {
        MLog.e(i + " >4> " + localeList4.get(i).getLanguage() + "-" + localeList4.get(i).getCountry());
    }
}

第一次測試

測試手機:Nubia Z9 mini,Android 7.1,Mokee Rom

手機系統語言順序:hi-IN,zh-CN,en-US,zh-HK

App 國際化:values,values-zh (values 裡的 string 為英文,values-zh 裡的 string 為中文)

結果是:

zh-CN

0 >1> zh-CN
1 >1> hi-IN
2 >1> en-US
3 >1> zh-HK

0 >2> zh-CN
1 >2> hi-IN
2 >2> en-US
3 >2> zh-HK

0 >3> hi-IN
1 >3> zh-CN
2 >3> en-US
3 >3> zh-HK

並且 App 當前顯示的文字是中文

第二次測試

測試手機:Nubia Z9 mini,Android 7.1,Mokee Rom

手機系統語言順序:hi-IN,en-US,zh-CN,zh-HK

App 國際化:values,values-zh

結果是:

en-US

0 >1> en-US
1 >1> hi-IN
2 >1> zh-CN
3 >1> zh-HK

0 >2> en-US
1 >2> hi-IN
2 >2> zh-CN
3 >2> zh-HK

0 >3> hi-IN
1 >3> en-US
2 >3> zh-CN
3 >3> zh-HK

並且 App 當前顯示的文字是英文

結論

從 Android 7.0 開始,系統語言支援多個,可手動排序,系統根據 App 本身支援的語言和手機出廠設定的語言等因素來調整 App 本身的預設語言。

要獲取系統為 App 調整後的預設語言

Locale locale = Locale.getDefault();
//Locale.getDefault() 和 LocaleList.getAdjustedDefault().get(0) 同等效果,還不需要考慮版本問題,推薦直接使用
String language = locale.getLanguage() + "-" + locale.getCountry();

要獲取系統真實首選語言

Locale locale;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
    locale = LocaleList.getDefault().get(0);
} else locale = Locale.getDefault();

String language = locale.getLanguage() + "-" + locale.getCountry();

PS:你可以通過下面的方式和我聯絡