Android context.getResources.updateConfiguration() deprecated

后端 未结 7 670
死守一世寂寞
死守一世寂寞 2020-11-22 16:05

Just recently context.getResources().updateConfiguration() has been deprecated in Android API 25 and it is advised to use context.createConfigurationContext() instead.

7条回答
  •  不要未来只要你来
    2020-11-22 16:43

    Try this:

    Configuration config = getBaseContext().getResources().getConfiguration();
    config.setLocale(locale);
    context.createConfigurationContext(config);
    

提交回复
热议问题