

How do I move a list from one fragment to another in Android? Then you can just cast the list to (Serializable).public class Object implements Serializable.First, make the class of the list implement Serializable.Get your custom object in ActivityB using intent.

Use putExtra(String name, Parcelable value) to add it to the intent in ActivityA.

Pass custom object from one activity to another How to pass object array from one activity to another in Android?
