android 使用SharedPreferences保存HashSet的时候要注意数据不能写入进去的问题:
不能更新的问题就出在getStringSet的object和putStringSet的object不能是同一个,不能在get之后,进行更改,然后又put进去,这样是无法更改的。
可以使用这样:
sp.edit().putStringSet(flag, new HashSet()).commit();//先把原来的清空
sp.edit().putStringSet(flag, value).commit();//然后再放入数据
参考: http://www.lugeek.com/2014/05/15/android-sharedpreference-StringSet/