赞
踩
分别在不同的values目录下创建strings.xml文件,并对字符串进行翻译。
例如,我们使用简体中文为默认语言,并添加英语和繁体中文到项目中。
在设置里面选择不同的语言环境,APP会自动适配。
在Configuration
里面设置locale
,并且需要重新打开Activity
才能生效。
Resources res = getResources();
Configuration config = res.getConfiguration();
config.locale = Locale.TRADITIONAL_CHINESE;
res.updateConfiguration(config, res.getDisplayMetrics());
Intent intent = new Intent(this, LanguageActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。