首页 > 代码库 > Android 判断当前语言环境是否是中文环境

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