I have created a Parcelable object below, my object contains a List of Products. In my constructor how do I handle re-creating my Parcelable<
Parcelable
List
Parcelable<
Assuming the Product is implementing Parcelable, you can use this for writing:
Product
dest.writeValue(products);
and this for reading:
products = (List) in.readValue(Product.class.getClassLoader());