我正在尝试在运行时更改应用程序语言。我检查了几篇文章,现在我的代码如下:
if(position == 0){//Position 0 of an array to select the language
val locale = Locale("es_ES")
val config = applicationContext.resources.configuration
config.setLocale(locale)
applicationContext.createConfigurationContext(config)
}
我有一个values-es目录,我在其中拥有自己的strings.xml文件,其中包含转换后的字符串。无论如何,似乎它并没有任何改变。
我再说一遍,我尝试并检查了Stack Overflow中的很多帖子,但是我不知道我在哪里失败。 在此先感谢您,由于我的英语不好我可以提出任何问题。
第二次尝试:
我一直在尝试,现在我的代码如下:
val locale = Locale("es")
Locale.setDefault(locale)
val config = applicationContext.resources.configuration
config.setLocale(locale)
applicationContext.resources.configuration.setTo(config)
Log.d("Configuration",config.toString())
Log.d("Language",config.locales.toLanguageTags())
调试消息是:
D/Configuration: {1.0 310mcc260mnc [es] ldltr sw411dp w683dp h387dp 420dpi nrml land finger qwerty/v/v -nav/h winConfig={ mBounds=Rect(0, 0 - 1794, 1080) mAppBounds=Rect(0, 0 - 1794, 1080) mWindowingMode=fullscreen mActivityType=undefined} s.40}
D/Language: es
但是我的字符串没有变化,我的应用程序继续使用strings(en)文件。
答案 0 :(得分:0)
请尝试使用此代码
String languageToLoad = "es"; // your language
Locale locale = new Locale(languageToLoad);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());
Intent refresh = new Intent(DashboardActivity.this, DashboardActivity.class);
startActivity(refresh);
finish();