How to quit android application programmatically

前端 未结 30 2087
迷失自我
迷失自我 2020-11-22 03:06

I Found some codes for quit an Android application programatically. By calling any one of the following code in onDestroy() will it quit application entirely?

30条回答
  •  花落未央
    2020-11-22 03:14

    Since API 16 you can use the finishAffinity method, which seems to be pretty close to closing all related activities by its name and Javadoc description:

    this.finishAffinity();
    

    Finish this activity as well as all activities immediately below it in the current task that have the same affinity. This is typically used when an application can be launched on to another task (such as from an ACTION_VIEW of a content type it understands) and the user has used the up navigation to switch out of the current task and into its own task. In this case, if the user has navigated down into any other activities of the second application, all of those should be removed from the original task as part of the task switch.

    Note that this finish does not allow you to deliver results to the previous activity, and an exception will be thrown if you are trying to do so.


    Since API 21 you can use a very similar command

    finishAndRemoveTask();
    

    Finishes all activities in this task and removes it from the recent tasks list.

提交回复
热议问题