6

我知道,这个问题已经在很多线程中处理过,但我无法弄清楚这个问题。所以我设置了一个这样的共享偏好:

SharedPreferences prefs = MainActivity.this.getPreferences(MODE_PRIVATE);
SharedPreferences.Editor editor = prefs.edit();
editor.putStringSet(spinnerName, myValueSet  );
editor.apply();

我读了这样的偏好:

SharedPreferences prefs = MainActivity.this.getPreferences(MODE_PRIVATE);
Set<String> spinnerValuesSet = null;
spinnerValuesSet = prefs.getStringSet(spinnerName,null );

一切正常,除了我的更改在此活动运行时可见,即 - 我显示来自 SharedPreferences 的值,允许用户删除或添加然后更新 ListView。这可行,但在我重新启动应用程序后,我得到了初始值。例如,这是我从列表中删除一个值、更新 SharedPreferences 中的值并更新 ListView 的方法

Button btn = (Button) findViewById(R.id.button1);
btn.setOnClickListener(new OnClickListener(){
   @Override
   public void onClick(View arg0) {
    SharedPreferences prefs =  MainActivity.this.getPreferences(MODE_PRIVATE);
    Set<String> spinnerValuesSet = prefs.getStringSet(spinnerName,null );
    for (String s : spinnerValuesSet)
    {
         if(s == currentSelectedItemString)
         {
             spinnerValuesSet.remove(s);
             SharedPreferences.Editor editor = prefs.edit();
             editor.putStringSet(spinnerName, spinnerValuesSet );
                 editor.apply();
             break;
         }
    }
 updateListValues();

}
});

这是更新 ListView 的方法:

 private void updateListValues()
 {
   SharedPreferences prefs = MainActivity.this.getPreferences(MODE_PRIVATE);
   Set<String> spinnerValuesSet = prefs.getStringSet(spinnerName,null );
   if(spinnerValuesSet.size() > 0) 
    {
        names = new ArrayList<String>();
        names.clear();
        int k=0;
        for (String s : spinnerValuesSet) {
             names.add(k, s);
             k++;
        }
        namesAA = new ArrayAdapter<String> (  this, android.R.layout.simple_list_item_activated_1, names );
        myList.setAdapter(namesAA);
   }

}

任何帮助深表感谢。

4

5 回答 5

9

SharedPreferences 的各种 get 方法返回的对象应该被视为不可变的。请参阅SharedPreferences 类概述以供参考。

您必须remove(String)通过SharedPreferences.Editor返回的调用SharedPreferences.edit()而不是直接调用返回的 Set SharedPreferences.getStringSet(String, Set<String>)

您每次都需要构造一个包含更新内容的新字符串集,因为当您想要更新其内容时,您必须从 SharedPreferences 中删除 Set 条目。

于 2013-09-13T21:07:25.777 回答
3

发生问题是因为 SharedPreference 返回的 Set 是不可变的。 https://code.google.com/p/android/issues/detail?id=27801

我通过创建一个新的 Set 实例并存储从 SharedPreferences 返回的所有值来解决这个问题。

     //Set<String> address_ids = ids from Shared Preferences...

  //Create a new instance and store everything there.
        Set<String> all_address_ids = new HashSet<String>();
        all_address_ids.addAll(address_ids);

现在使用新实例将更新推送回 SharedPreferences

于 2015-09-06T16:46:41.897 回答
0

我可能错了,但我认为您检索共享首选项的方式是问题所在。尝试使用

SharedPreferences prefs = getSharedPreferences("appPreferenceKey", Context.Mode_Private);

于 2013-09-13T19:42:57.263 回答
0

使用editor.commit();代替editor.apply();

示例代码:

SharedPreferences prefs = MainActivity.this.getPreferences(MODE_PRIVATE);
SharedPreferences.Editor editor = prefs.edit();
editor.putStringSet(spinnerName, myValueSet  );
editor.commit();


我希望这有帮助。

于 2013-09-13T19:49:50.870 回答
0

根据操作系统构建,您可能必须以不同的方式保存值。

boolean apply = Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD;

public static void saveValue(SharedPreferences.Editor editor)
{
    if(apply) {
        editor.apply();
    } else {
        editor.commit();
    }
}
于 2013-09-13T20:00:58.680 回答