Android使用SharedPreferences保存HashSet数据不能更新成功

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/

    原文作者:zzzypp
    原文地址: https://blog.csdn.net/zzzypp/article/details/51170894
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞