I am trying to work on sending an object of my customer class from one Activity
and display it in another Activity
.
The code for t
Pass object from one activity to another activity.
(1) source activity
Intent ii = new Intent(examreport_select.this,
BarChartActivity.class);
ii.putExtra("IntentExamResultDetail",
(Serializable) your List> object here);
startActivity(ii);
(2) destination acitivity
List> aa = (List>) getIntent()
.getSerializableExtra("IntentExamResultDetail");