Reputation: 20223
I have an ArrayList of objects in one activity and I need this arrayList in another activity.
Is there a solution to transger this ArrayList? I know i can use intents for ArrayList of Strings but what's about the ArrayList of objects?
Thank you.
Upvotes: 0
Views: 2741
Reputation: 132982
Complex types passed by means of Parcelable
or do the serialization
to another kind of primitive object that you can put to Intent's extras. see this question:
Help with passing ArrayList and parcelable Activity
and this tutorial:
Passing a list of objects between Activities
Upvotes: 4