Exit/Finish an app/activity - android

前端 未结 12 744
醉梦人生
醉梦人生 2021-02-05 05:04

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

12条回答
  •  孤城傲影
    2021-02-05 05:57

    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.

提交回复
热议问题