Locale curLocale = getResources().getConfiguration().locale;
//通过Locale的equals方法,判断出当前语言环境
if (curLocale.equals(Locale.SIMPLIFIED_CHINESE)) {
//中文
} else if(Locale.ENGLISH){
//英文
}
2.设置APP语言
Resources resources = getResources(); // 获得res资源对象
Configuration config = resources.getConfiguration(); // 获得设置对象
DisplayMetrics dm = resources.getDisplayMetrics(); // 获得屏幕参数:主要是分辨率,像素等。
config.locale = Locale.ENGLISH; // 设置APP语言设置为英文
resources.updateConfiguration(config, dm);
//设置完以后要刷新Activity才能及时生效
PS:切换语言,程序一定要有对应的资源文件,否则是无效的