I\'m trying to make my objects Parcelable. However, I have custom objects and those objects have ArrayList attributes of other custom objects I have made.
ArrayList
To put: bundle.putSerializable("key",(Serializable) object);
bundle.putSerializable("key",(Serializable) object);
To get: List obj = (List)((Serializable)bundle.getSerializable("key"));
List obj = (List)((Serializable)bundle.getSerializable("key"));