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

Android 判断当前语言环境是否是中文环境,第1张

概述话不多说,请看代码:publicstaticbooleanisZh(Contextcontext){Localelocale=context.getResources().getConfiguration().locale;

话不多说,请看代码:

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; } 

PS: androID判断当前系统用的是什么语言

判断国家:

中文getResources().getConfiguration().locale.getCountry().equals("CN")

繁体中文getResources().getConfiguration().locale.getCountry().equals("TW")

英文(英式):getResources().getConfiguration().locale.getCountry().equals("UK")

英文(美式):getResources().getConfiguration().locale.getCountry().equals("US")

如果不清楚当前国家的简写,可以直接

System.out(getResources().getConfiguration().locale.getCountry());打印出来即可

下面是判断是否是中文或者繁体中文(台湾):

public boolean isLunarSetting() {   String language = getLanguageEnv();    if (language != null     && (language.trim().equals("zh-CN") || language.trim().equals("zh-TW")))    return true;   else    return false;  } 
private String getLanguageEnv() {   Locale l = Locale.getDefault();   String language = l.getLanguage();   String country = l.getCountry().tolowerCase();   if ("zh".equals(language)) {    if ("cn".equals(country)) {     language = "zh-CN";    } else if ("tw".equals(country)) {     language = "zh-TW";    }   } else if ("pt".equals(language)) {    if ("br".equals(country)) {     language = "pt-BR";    } else if ("pt".equals(country)) {     language = "pt-PT";    }   }   return language;  } 

String format = Settings.System.getString(context4Year.getContentResolver(),Settings.System.DATE_FORMAT);

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持编程小技巧!

总结

以上是内存溢出为你收集整理的Android 判断当前语言环境是否是中文环境全部内容,希望文章能够帮你解决Android 判断当前语言环境是否是中文环境所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1146427.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存