Is it possible to save the entire array (or even ArrayList) into the data of an Android application?
As far as I know, you can only do things like putInt, putBoolean or putString .... But what about more complex data types? Is there any way to do this?
Or do I need to convert the entire array to a string first, and then parse it back into an array?
source share