【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在myeclipse上创建的项目各种报错
- Android webRTC 代码下载编译
- android设计的布局在阿拉伯语下界面错乱的解决方法
- App更新之dialog数字进度条
- 深入理解Angular中的$apply()以及$digest()
- Visual StudioThe project appears to be under source control, but the associated source control plu(代
- AndroidStudio运行程序提示Error running app : No target device found
- 安卓开源项目周报0411
- android MVP例子