Making ArrayList of custom objects parcelable
Use writeTypedList and readTypedList
.
parcel.writeTypedList(yourList);
and
parcel.readTypedList(yourList, YourParcelable.CREATOR);
Notice how you pass in the CREATOR as an argument for reading the list back.