i want to pass the Vector object into the
IntentObj.putExtra()
i have done like the below code
Intent confirmItemIntent = new Intent(this,
ItemConfirmSave.class);
confirmItemIntent.putExtra("VECTORITEMCARDEDITTEXT", VECTORITEMCARDEDITTEXT);
this.startActivity(confirmItemIntent);
is it correct ? if it is then how to get the passes Vector Object into next class i.e. ItemConfirmSave. Anyone please help.