How can I pass an object of a custom type from one Activity to another using the putExtra() method of the class Intent?
putExtra()
you can use putExtra(Serializable..) and getSerializableExtra() methods to pass and retrieve objects of your class type; you will have to mark your class Serializable and make sure that all your member variables are serializable too...