Skip to content Skip to sidebar Skip to footer

Passing Arraylist Object Between Activities Using Parcelable

Ill first start this off saying i have seen all the other posts that deal with this and have tried all of them. Im trying to do the same thing asked in the other posts, which is to

Solution 1:

It is true that you have provided too much information.

However, is this on the same process (i.e. your own app only?) If yes, then avoid doing that entirely. It will be too slow to parcel/unparcel these objects.

Use a singleton where you store your data and just access the singleton from each activity.

Post a Comment for "Passing Arraylist Object Between Activities Using Parcelable"