I\'ve got 4 activities say Act1
, Act2
, Act3
and Act4
.
A button in Act1 opens Act2, a button in Act2 opens Act3, a button in A
Use below code in your Act4
'th Menu.xml
's exit button -
Intent intent = new Intent(Act4.this, Act1.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra("EXIT", true);
startActivity(intent);
And, in your first activity's onCreate()
method just put the below code -
if (getIntent().getBooleanExtra("EXIT", false))
{
finish();
}
This will exit your app.