posted by 네코냥이 2015. 8. 13. 17:54


젤리빈 (API 16) 부터 사용가능합니다.


Activity.finishAffinity();


current task 에 존재하는 관련성(affinity)이 깊은 모든 액티비티를 종료한다. (현재 액티비티도 포함)

public void finishAffinity ()

Added in API level 16

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 in to 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.