Saving an entire Bundle to SharedPreferences

巧了我就是萌 提交于 2019-12-17 21:02:06

问题


Assuming a method of mine was passed a Bundle already filled with data to be saved, is there a way to save it to SharedPreferences without taking it apart to ints, floats, Strings, etc.?

I prefer the convenience of writing/committing it all in "one fell swoop", so if this isn't possible using SharedPreferences, what other persistent storage approach would you recommend?


回答1:


as far as I know, you can save only primitive data (and their wrappers) to SharedPreferences

why don't you create your own helper method which will iterate through Bundle and save all values from it to SharedPreferences?




回答2:


SharedPreferences are serialized to XML, which is why you can only use simple types. You'll either have to do your own conversion of the bundle to individual SharePreferences properties or serialize the bundle some other way to disk.

Here's a good reference document discussing the various possibilities of storing data in Android: http://developer.android.com/guide/topics/data/data-storage.html



来源:https://stackoverflow.com/questions/11903718/saving-an-entire-bundle-to-sharedpreferences

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!