請幫幫我! 我有一個簡單的應用程序,其中'Editetext',文件夾:值 - RU,值,價值hy - 爲本地化。我想從適當的值文件夾給Edittext提示。 但困惑,併爲「en」的例子,取值的價值hy。Android本地化錯誤
Locale locale = new Locale("en");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getApplicationContext().getResources().updateConfiguration(config, null);
EditText ed=(EditText)findViewById(R.id.edit);
ed.setHint(getResources().getString(R.string.text));`
據我所知,您在執行多次期間更改語言環境。它是否正確? –
是的,這是正確的 – user3276524
請編輯您的問題,幷包括清單。你沒有使用android:configChanges是你嗎? – Simon