how to finish all activities and close the application in android?

前端 未结 9 1144
自闭症患者
自闭症患者 2021-01-03 19:53

My application has the following flow:

Home->screen 1->screen 2->screen 3->screen 4->screen 5>Home->screen 2->Home->Screen 3

My problem is that when I am try

9条回答
  •  Happy的楠姐
    2021-01-03 20:11

    Sometime finish() not working

    I have solved that issue with

    finishAffinity()

    Do not use

    System.exit(0);
    

    It will finish app without annimation.

提交回复
热议问题