API 25更改APP中的语言

时间:2017-01-08 11:26:33

标签: java android

我试图在Android Studio中编写应用,用户可以在其中更改语言。 问题是,API 25中不推荐使用两个重要的功能:

Locale myLocale = new Locale("eng"); 
Resources res = getResources(); 
DisplayMetrics dm = res.getDisplayMetrics(); 
Configuration conf = res.getConfiguration(); 
conf.locale = myLocale;                             //deprecated
res.updateConfiguration(conf, dm);                  //deprecated
Intent refresh = new Intent(this, AndroidLocalize.class); 
startActivity(refresh); 
finish();

有没有人知道如何在没有这两个功能的情况下做到这一点?

0 个答案:

没有答案