I'm trying to get an Arraylist to work in another Activity on Android. All is well. The arrray list is created, however, I cannot get Intent to work.
What way is there to get an arraylist to another variable?
Here is the code I'm using to generate the arrayList:
public List<Contact> getAllContacts() {
List<Contact> ContactpList = new ArrayList<Contact>();
How will I go about making this arraylist available in my other activities?