this question has 2 parts
I'm trying to pass an ArrayList from one activity to another. this arraylist contains some objects instanciated 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
i hope i made myself clear. thanks in advance.