我能否知道我在后面的代码中使用多语言应用中的哪个文件strings.xml?
请给我举个例子。
答案 0 :(得分:0)
您可以通过在运行时更新资源配置来更改应用程序语言。喜欢这段代码:
Resources res=getResources();
Configuration config = res.getConfiguration();
Locale locale = new Locale("fr");//change to the France language
Locale.setDefault(locale);
config.locale = locale;
res.updateConfiguration(config, res.getDisplayMetrics());