使用SharedPreferences更改启动活动中的应用程序语言?

时间:2015-11-05 11:40:08

标签: android

我用下面的代码来改变语言:

public void setLocale(String languageToLoad){
    Locale locale = new Locale(languageToLoad);
    Locale.setDefault(locale);
    Configuration config = new Configuration();
    config.locale = locale;
    getResources().updateConfiguration(config,getBaseContext().getResources().getDisplayMetrics());
    Intent intent = new Intent(getApplicationContext(), MainActivity.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    startActivity(intent);
}

我的问题是当我尝试使用SharedPreferences加载“locale”时,由于刷新活动,它似乎陷入循环陷阱。那么如何在开始活动中加载最后一个定位。 提前谢谢。

2 个答案:

答案 0 :(得分:0)

您无需再次启动活动。您只需通过调用setContentView()重新启动视图和布局。

答案 1 :(得分:0)

我找到了答案:

 protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //some code here
    if (last_local.equals("fa") && current_local.equals("en"))
        setLocale("fa");
    //some code here
}

 public void setLocale(String languageToLoad){
    Locale locale = new Locale(languageToLoad);
    Locale.setDefault(locale);
    Configuration config = new Configuration();
    config.locale = locale;
    getResources().updateConfiguration(config, getBaseContext().getResources().getDisplayMetrics());
    SharedPreferences Settings=getSharedPreferences("Last Setting",1);
    Settings.edit().putString("Locale Status", languageToLoad).commit();
    Intent intent = new Intent(getApplicationContext(), MainActivity.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    startActivity(intent);
}

我的问题在于onstop()方法,我保存了这个循环。