I would like to save a Bundle object (parcelable) into SharedPreferences... is this possible?
There is any other option ?
I would like to save a Bundle object (parcelable) into SharedPreferences... is this possible?
There is any other option ?
According to the documentation it looks like there is no method to save a parcelable object inside shared preferences. Depending on the size of the object you want to save you could choose between serializing it in a string and saving in shared preferences as a string or save it to a file.