app 内部 语言切换

local could be Locale.US, Locale.CHINA and so on

public static void setLanguage(Context context, Locale locale) {
Configuration config = context.getResources().getConfiguration();
config.setLocale(locale);
context.getResources().updateConfiguration(config, context.getResources().getDisplayMetrics());
}
posted @ 2020-10-14 09:26  Jokeyyu  阅读(143)  评论(0编辑  收藏  举报