I have a ArrayList that I am passing between activities. In this ArrayList are objects made from a class that has four va
ArrayList
activities
class
You should try replacing this.choices = parcel.readArrayList(null); by this.choices = parcel.readArrayList(Choices.class.getClassLoader());
this.choices = parcel.readArrayList(null);
this.choices = parcel.readArrayList(Choices.class.getClassLoader());
Hope this helps