First, make the class of the list implement Serializable.
public class Object implements Serializable{}
Then you can just cast the list to (Serializable). Like so:
List
Example 2: android pass object to activity
Intent intent = new Intent(fromClass.this,toClass.class).putExtra("myCustomerObj",customerObj);