简体   繁体   中英

How to transfer an ArrayList of objects from one Activity to another

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM