改变的应用程序的语言,而不改变设备的设置而不、应用程序、语言、设备

2023-09-06 21:50:30 作者:童话里做英雄

我想提出一个Android应用程序中,我要改变应用程序的语言选择上的微调特定的语言,而不改变device.I的语言作出不同的字符串文件的所有语言。现在,下一步该怎么做? 任何人都可以请帮我在这? 谢谢

I am making an android app in which i want to change the language of app on selecting a particular language in spinner without changing the language of device.I have made different string files for all language. Now what to do next?? Can anyone please help me over this? thanks

推荐答案

最简单的办法就是改变虚拟机的语言环境,如:

Most simple way is just to change VM's locale, like:

Locale locale=new Locale("zh");  //Chinese    
Locale.setDefault(locale);  //set VM's default locale