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?
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?