网友通过本文主要向大家介绍了android编程语言,android 新语言,android studio语言,android开发语言,android 获取当前语言等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
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; }