Android: back to previous activities?

Is there a way to get the user to return to the previous operation? I would like to kill my current activity so that the user "returns"?

+3
source share
3 answers

The challenge in your business: http://d.android.com/reference/android/app/Activity.html#finish ()

And to make sure that you started your business correctly in order to have a status in the operations stack, check the documentation there: http://d.android.com/guide/topics/fundamentals/tasks-and-back-stack.html

+11
source

Call finish ()

. , . ActivityResult , onActivityResult().

+5

Call finish()to end current activity and return.

+4
source

All Articles