I am trying to send a custom object from one activity to another activity, but it's crashing when I call the start activity.
Below is the snippet I used.
My Activity implements Serializable
ArrayList<CUSTOM_OBJECT> Cus_Obje_arraylist = new ArrayList<CUSTOM_OBJECT>();
Here is my intent :
Intent inte = new Intent(getApplicationContext(), ListActivity.class); `
inte.putExtra("list",Cus_Obje_arraylist);`
startActivity(inte);
Please let me know why it's crashing or what alternate way I can use?