I have an arraylist of objects. ie ArrayList.
I want to pass this to a new Activity. I tried to use putParcelableArrayList but it has issues with the object. I remov
Very Easy way, try the following:
bundle.putSerializable("lstContact", (Serializable) lstObject);
lstObj = (List) bundle.getSerializable("lstContact");
and also you will need to implement your Contact class from Serializable interface. ex :
public class Contact implements Serializable{
...
...
...
}