I have a class that contains data i want to pass it between intents, this class have arraylist that contains another class objects. this is my class
public
you can let your class Item implements the Serializable interface, and use Intent.putExtra(String, Serializable). Since ArrayList implements also the Serializable interface, you can pass the whole Items object.
class Item
Serializable
ArrayList
Items