Android--获取当前系统的语言环境

来源:互联网 发布:qq mac 摄像头不能用 编辑:程序博客网 时间:2024/06/09 13:52

private boolean isZh() {
Locale locale = getResources().getConfiguration().locale;
String language = locale.getLanguage();
if (language.endsWith(“zh”))
return true;
else
return false;
}
其中languag为语言码:
zh:汉语
en:英语

原创粉丝点击