I wish to pass the value from 1st activity to 3rd activity.
My 1st activity: CustomizedListview
2nd activity is: SingleMenuItemActivity
3rd activity
I have to passed orderid value from 1st activity to second activity
Send as you send to second activity . Just change name of second activity to third activity.
Just Store Order Id in Shared Preference and get it in third Activity.
SharedPreferences myPrefs = this.getSharedPreferences("myPrefs", MODE_WORLD_READABLE);
SharedPreferences.Editor prefsEditor = myPrefs.edit();
prefsEditor.putString("order_id", "5");
prefsEditor.commit();
Get Shared Preference.
SharedPreferences myPrefs = this.getSharedPreferences("myPrefs", MODE_WORLD_READABLE);
String prefName = myPrefs.getString("order_id", "0");