Android 判断当前语言环境是否是中文环境
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 判断当前语言环境是否是中文环境的主要内容,如果未能解决你的问题,请参考以下文章