pass an object from one activity to another on android:
Intent intent = new Intent(fromClass.this,toClass.class).putExtra("myCustomerObj",customerObj); Intent intent = getIntent().putExtra("myCustomerObj",customerObj);
get Extras:
getIntent().getExtras();