美文网首页工作点滴
Android原生国际化

Android原生国际化

作者: 自由的刷客 | 来源:发表于2021-04-26 10:14 被阅读0次

    Android原生国际化支持随系统默认语言选择,相关代码如下:

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

    国际化文本资源需要在res目录下添加,比如添加英文就建立values-en目录,在该目录下加入strings.xml资源文件

    strings.xml:

    <resources>    <string name="app_name">patriarch_tips</string>    <string name="introduction">Hello, my friend!</string></resources>

    语言设置及切换Java代码:

    public void setConfiguration() {    Locale targetLocale = getLanguageLocale();    Configuration configuration =this.getResources().getConfiguration();    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {        configuration.setLocale(targetLocale);    }else {        configuration.locale = targetLocale;    }    Resources resources =this.getResources();    DisplayMetrics dm = resources.getDisplayMetrics();    resources.updateConfiguration(configuration, dm);//语言更换生效的代码!}

    代码GitHub地址:

    https://github.com/tigerhsu8642/Uni_CrossPlatform

    相关文章

      网友评论

        本文标题:Android原生国际化

        本文链接:https://www.haomeiwen.com/subject/rtisrltx.html