我尝试将应用中的区域设置强制为用户指定的区域设置。由于这可能用于演示,我想在应用程序中更改语言/区域设置,而不是随时更改整个设备。
我环顾四周,试着用我在这里发现的每一个提示。结果:我可以使用新语言重新启动测试活动,但如果我更改方向,则区域设置将始终重置为设备。
我uploaded a minimalistic project所以你可以重现我的问题。请忽略UI的缩小,这并不重要:)
答案 0 :(得分:9)
此代码段可以满足您的需求,我已对其进行了测试。假设您希望用户能够通过主要活动中的菜单切换语言。您可以通过将语言标志保存为用户首选项并在“onCreate()”和“onConfigurationChanged()”上进行检查,如下所示:
public class MainActivity extends Activity {
SharedPreferences mPrefs1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mPrefs1 = PreferenceManager.getDefaultSharedPreferences(this);
String languageToLoad = mPrefs1.getString("languagePref", Locale.getDefault().getLanguage());
Locale locale = new Locale(languageToLoad);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,getBaseContext().getResources().getDisplayMetrics());
setContentView(R.layout.activity_main);
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
mPrefs1 = PreferenceManager.getDefaultSharedPreferences(this);
String languageToLoad = mPrefs1.getString("languagePref", Locale.getDefault().getLanguage());
Locale locale = new Locale(languageToLoad);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,getBaseContext().getResources().getDisplayMetrics());
setContentView(R.layout.activity_main);
}
// Declaring the Menu options
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.main_menu, menu);
return true;
}
//handle menu item selection
public boolean onOptionsItemSelected(MenuItem item)
{
switch (item.getItemId()) {
case R.id.menu_switch_language:
String languageToLoad = getResources().getString(R.string.switch_language);
mPrefs1 = PreferenceManager.getDefaultSharedPreferences(this);
SharedPreferences.Editor editor = mPrefs1.edit();
editor.putString("languagePref", languageToLoad);
editor.commit(); // Very important to save the preference
finish();
startActivity(getIntent());
return true;
default:
return super.onOptionsItemSelected(item);
}
}
}
答案 1 :(得分:3)
我刚看到你的代码。
检查您使用的Locale
是来自java.util而不是来自android。您的代码不会更改手机的区域设置。
测试它:
如果你要做的只是将Locale设置为默认值并且能够在屏幕旋转后看到相同的值:
而不是:
android:configChanges="locale"
使用:
android:configChanges="locale|orientation"
答案 2 :(得分:3)
对我来说有用的是在扩充布局之前设置区域设置:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String userLocale = "Wolof"; // adapt to your need
Locale locale = new Locale(userLocale);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config, getBaseContext().getResources().getDisplayMetrics());
setContentView(R.layout.my_activity);
...
}
答案 3 :(得分:2)
是否因为方向更改时重新启动了活动而重置了语言环境?
如果是这样,您可以拦截或阻止方向更改:Activity restart on rotation Android
答案 4 :(得分:2)
您应该在 Application :: onCreate 和 Application :: onConfigurationChanged 中强制使用您的语言环境。 不要忘记在 AndroidManifest.xml
中注册您的Application类