How to pass ArrayList<CustomeObject> from one activity to another? [duplicate]
问题 This question already has answers here : Passing arraylist of objects between activities (5 answers) Closed 5 years ago . I want to send Following ArrayList from one activity to another please help. ContactBean m_objUserDetails = new ContactBean(); ArrayList<ContactBean> ContactLis = new ArrayList<ContactBean>(); I am sending the above arraylist after adding data in it as follows Intent i = new Intent(this,DisplayContact.class); i.putExtra("Contact_list", ContactLis); startActivity(i); But I