I wish to pass the value from 1st activity to 3rd activity.
My 1st activity: CustomizedListview
2nd activity is: SingleMenuItemActivity
3rd activity
Try this
Intent intent=new Intent(CustomizedListview.this,InsertionExample.class); intent.putExtra("orderid",getOrderid); startActivity(intent);
In your third activity
Bundle bundle = data.getExtras(); String getOrderId = bundle.getString("orderid");