Possible Duplicate:
Android: Go back to previous activity
I need go to previous activity without startActivity because I don't want open again the activity. Can I choose putting up or down activity according I need?
Thank's!
Possible Duplicate:
Android: Go back to previous activity
I need go to previous activity without startActivity because I don't want open again the activity. Can I choose putting up or down activity according I need?
Thank's!
Simply call finish()
.
Your activity will be closed and you will return to your previous activity.