How can I pass an object of a custom type from one Activity to another using the putExtra() method of the class Intent?
putExtra()
Intent i = new Intent(); i.putExtra("name_of_extra", myParcelableObject); startACtivity(i);