This question has 2 parts
I'm trying to pass an ArrayList from one Activity to another. this Arraylist contains some objects instantiated from a class that I've created(contain some strings and a Drawable).
I found online that i need to make my class Parcelable which was a problem especially with a Drawable.(this is the first part)
Once my class implements Parcelable, how would i be able to send/get my Arraylist.