Android应用切换语言

Configuration config = getResources().getConfiguration();//获取系统配置
config.locale = Locale.SIMPLIFIED_CHINESE;//将语言更改为简体中文
getResources().updateConfiguration(config, getResources().getDisplayMetrics());//更新配置

猜你喜欢

转载自blog.csdn.net/blueblood1/article/details/82930272