I wish to pass the value from 1st activity to 3rd activity.
My 1st activity: CustomizedListview
2nd activity is: SingleMenuItemActivity
3rd activity
You can pass the value in 2 ways:
Intent intent = new Intent (this, 2ndActivity.class);
intent.putExtra ("Value",Value);
startActivity(intent);
And the same you can do for 2nd activity to 3rd activity
Bundle extras = getIntent().getExtras();
if(extras!=null){
Values=extras.getString("value");
}