当前位置:   article > 正文

安卓多语言适配心得——附工具类_android 多语言

android 多语言

前言

上一次更新还是去年十月份,而且只更新了几篇文章,现在觉得这样下去不行,思来想去还是得做点什么,那就提起笔,写一下最近的工作收获吧。最近在做一个app的中英文适配,在网上调研的时候也是看到了很多优秀的多语言适配的文章,我借鉴(copy)了其中的中英文切换逻辑,最终比较完美的实现。

准备工作

先在资源文件values目录下右键生成资源文件,文件名最好用strigns,然后选择Locale,点击右箭头,选择语言和区域,点击OK,最后就会生成一个stings的同名文件。
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

然后在两个stings中简单设置一下中英文。

strings:

<resources>
    <string name="app_name">LTest</string>

    <string name="welcome_test">欢迎页测试文字</string>
    <string name="welcome">去设置语言</string>

    <string name="main_test">首页测试文字</string>
    <string name="main">设置语言</string>
</resources>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

strings_en:

<resources>
    <string name="app_name">LTest</string>

    <string name="welcome_test">Welcome page test text</string>
    <string name="welcome">Go to set language</string>

    <string name="main_test">Home test text</string>
    <string name="main">Setting the language</string>
</resources>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

切换应用语言

一般来说,通过代码切换应用语言即可,而不是跳转到系统设置界面设置系统语言。

Android在不同系统版本中切换语言的接口不同,安卓6及以下,使用resources.updateConfiguration()方法,而在安卓7及以上,调用configuration.setLocale()方法。当然,这两个方法也不一定对,只是提供一个思路。下面分享一下我得语言切换工具类,当然大家可以根据需求进行一定的调整。

public class LanguageUtils {

    private static final String TAG = "LanguageUtils";

    public static final String SELECT_LANGUAGE = "select_language";
    // 中文
    public static final String CHINESE = "简体中文";
    // 英文
    public static final String ENGLISH = "English";


    /**
     * 主动点击切换语言
     */
    public static void changeLanguage(Context context) {
        SharedPreferences preferences = context.getSharedPreferences(LanguageUtils.SELECT_LANGUAGE,
                Context.MODE_PRIVATE);
        String selectedLanguage = preferences.getString(LanguageUtils.SELECT_LANGUAGE, "");
        if (CHINESE.equals(selectedLanguage)) {
            selectedLanguage = ENGLISH;
        } else {
            selectedLanguage = CHINESE;
        }
        SharedPreferences.Editor editor = preferences.edit();
        editor.putString(SELECT_LANGUAGE, selectedLanguage);
        editor.apply();

        Resources resources = context.getResources();
        Configuration configuration = resources.getConfiguration();
        Locale locale;
        if (CHINESE.equals(selectedLanguage)) {
            locale = Locale.ENGLISH;
        } else {
            locale = Locale.CHINESE;
        }

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            // apply locale
            configuration.setLocale(locale);
        } else {
            // updateConfiguration
            configuration.locale = locale;
            DisplayMetrics dm = resources.getDisplayMetrics();
            resources.updateConfiguration(configuration, dm);
        }
    }

    /**
     * 页面加载
     *
     * @param context
     * @return
     */
    @SuppressLint("ObsoleteSdkInt")
    public static Context attachBaseContext(Context context) {
        SharedPreferences preferences = context.getSharedPreferences(LanguageUtils.SELECT_LANGUAGE,
                Context.MODE_PRIVATE);
        String selectedLanguage = preferences.getString(LanguageUtils.SELECT_LANGUAGE, "");
        Log.d(TAG, "attachBaseContext: 语言" + selectedLanguage);

        Resources resources = context.getResources();
        Configuration configuration = resources.getConfiguration();
        Locale locale;
        if (CHINESE.equals(selectedLanguage)) {
            locale = Locale.ENGLISH;
        } else {
            locale = Locale.CHINESE;
        }

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            // apply locale
            configuration.setLocale(locale);
        } else {
            // updateConfiguration
            configuration.locale = locale;
            DisplayMetrics dm = resources.getDisplayMetrics();
            resources.updateConfiguration(configuration, dm);
        }

        return context;
    }

    /**
     * 获取选择的语言
     */
    public static String getSelectLanguage(Context context) {
        SharedPreferences preferences = context.getSharedPreferences(LanguageUtils.SELECT_LANGUAGE,
                Context.MODE_PRIVATE);
        return preferences.getString(LanguageUtils.SELECT_LANGUAGE, "");
    }

    /**
     * 判断是中文还是英语
     */
    public static Boolean isChinese(Context context) {
        SharedPreferences preferences = context.getSharedPreferences(LanguageUtils.SELECT_LANGUAGE,
                Context.MODE_PRIVATE);
        String selectLanguage = preferences.getString(LanguageUtils.SELECT_LANGUAGE, "");
        return CHINESE.equals(selectLanguage);
    }

    /***
     *自定义获取对应语言字符串
     * @param context
     * @param language 语言(如:zh)
     * @return
     */
    public static String getLanguage(Context context, String language, int resourcesId) {
        Locale locale = new Locale(language);
        Configuration configuration = new Configuration(context.getResources().getConfiguration());
        configuration.setLocale(locale);
        return context.createConfigurationContext(configuration).getResources().getString(resourcesId);
    }

    /**
     * 获取系统首选语言
     *
     * @return Locale
     */
    public static Locale getSystemPreferredLanguage() {
        return Locale.getDefault();
    }

    /**
     * 获取支持语言
     *
     * @param language language
     * @return
     */
    public static Locale getSupportLanguage(String language) {
        if (TextUtils.isEmpty(language)) {
            return Locale.CHINESE;
        }
        if (language.equals(CHINESE)) {
            return Locale.CHINESE;
        }
        if (language.equals(ENGLISH)) {
            return Locale.ENGLISH;
        }
        return Locale.CHINESE;
    }

    /**
     * 是否支持此语言
     *
     * @param language language
     * @return true:支持 false:不支持
     */
    public static boolean isSupportLanguage(String language) {
        return language.equals(Locale.CHINESE.getLanguage()) || language.equals(Locale.ENGLISH.getLanguage());
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153

当然,你会发现,直接调用changeLanguage方法并不能直接修改当前应用的语言,你还需要重写Activity的attachBaseContext方法,这样你就可以通过重启应用更换应用语言了声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/196573

推荐阅读