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<
If class Product is compatible with parcelable protocol, following should work according to documentation.
Product
products = new ArrayList(); in.readList(products, Product.class.getClassLoader());