I\'m trying to pass an ArrayList of Person Objects from the MainActivity to SecondActivity to print the details of the person in a custom listView adapter.
You should use another function: intent.putParcelableArrayListExtra(String name, ArrayList extends Parcelable> value) Google site in main Activity, then intent.getParcelableArrayListExtra to get in second Activity.
Hope this help.