Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When i press a button in my app, I need to return to the last activity.

Any ideas?

share|improve this question

2 Answers

up vote 55 down vote accepted

Calling finish() from the activity you want to end should take care of this.

share|improve this answer
thats rigth, so easy, sorry.... – david Apr 27 '10 at 9:52
5  
No need to apologize, just happy to help! – Chris Thompson Apr 27 '10 at 15:32
4  
This does not simulate the back button. If you are only using activities it is ok but if you are using fragments in an activity, this will close all the fragments with the activity together. – tasomaniac Nov 14 '12 at 10:31
@tasomaniac Ah, interesting. I actually posted this answer before Fragments existed so that's interesting to know! – Chris Thompson Nov 14 '12 at 17:24
2  
@tasomaniac It seems getFragmentManager().popBackStack() does the job for fragments. – Mehmed Mar 10 at 23:35
show 1 more comment

when using fragments:

getFragmentManager().popBackStack();

or

getSupportFragmentManager().popBackStack();

if you are using android.support.v4.app package

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.