Android 判断当前语言环境是否是中文环境

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 判断当前语言环境是否是中文环境相关的知识,希望对你有一定的参考价值。

 

public static boolean isZh(Context context) {  
    Locale locale = context.getResources().getConfiguration().locale;  
    String language = locale.getLanguage();  
    if (language.endsWith("zh"))  
        return true;  
    else  
        return false;  
}  

  

以上是关于Android 判断当前语言环境是否是中文环境的主要内容,如果未能解决你的问题,请参考以下文章

判断当前环境是Android还是IOS

uniapp判断当前环境是ios还是android

uniapp判断当前环境是ios还是android

当我在android中更改应用程序中的语言环境时如何重新加载当前视图

js--判断当前环境是否为微信环境

js如何判断当前运行环境是ios webview还是android webview