I am trying to work on sending an object of my customer class from one Activity and display it in another Activity.
Activity
The code for t
Pass one activity to another:
startActivity(new Intent(getBaseContext(),GetActivity.class).putExtra("passingkey","passingvalue"));
Get values:
String myvalue= getIntent().getExtras("passingkey");