码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2017-04-12 01:59:17      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:with   div   get   string   blog   oid   class   text   end   

 

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 判断当前语言环境是否是中文环境

标签:with   div   get   string   blog   oid   class   text   end   

原文地址:http://www.cnblogs.com/ganchuanpu/p/6697056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!