I have a class \'Product\' and i need to pass the arraylist of \'Product\' objects from one activity to another. I read that i can do so by making my Product class as Parce
Yes, the correct way is to use Parcelable or do the serialization to another kind of primitive object that you can put to Intent's extras
Parcelable