Android 判断当前语言环境是否是中文环境_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Android 判断当前语言环境是否是中文环境

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

 2017/4/12 5:32:12  ganchuanpu  程序员俱乐部  我要评论(0)
  • 摘要:publicstaticbooleanisZh(Contextcontext){Localelocale=context.getResources().getConfiguration().locale;Stringlanguage=locale.getLanguage();if(language.endsWith("zh"))returntrue;elsereturnfalse;}
  • 标签:android

 

class="brush:java;gutter:true;">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;  
}  

  

发表评论
用户名: 匿名