I have a List in one of my activities and need to pass it to the next activity.
private List selectedData;
I tried putting
You have to instantiate the List to a concrete type first. List itself is an interface.
List
If you implement the Parcelable interface in your object then you can use the putParcelableArrayListExtra() method to add it to the Intent.
Intent