Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to add "Back" button to my activity to be able to reopen the previous activity, I read that task stack keeps all the previously opened activities m how can I start the latest opened activity when clicking my "Back" button ?

share|improve this question
It will do this automatically. When you press back on your second activity, your first will reappear. Unless you are calling finish(); on it? – Blundell Jul 4 '11 at 13:27
I want to add a new button on my app UI that works for back button , how can I make it do this function ? – Adham Jul 4 '11 at 13:30
1  
Why would you want to do that? I see lots of people copying the IPhone back-button - but why? You duplicate a functionality thats already there as a hardware-button. Thats a waste of screen-space (which you dont have much of on a phone) and functionality. I would never press this anyway, I'm used to press the back button thats always there, not the one that may come up in certain apps, just out of habit. Please think about this before you build it. – user658042 Jul 4 '11 at 13:40

1 Answer

up vote 3 down vote accepted

Imitating the back button:

  Button myBackButton = (Button) findViewById(R.id.back_button);
  myBackButton.setOnClickListener(new View.OnClickListener(
      @Override
      public void onClick(){
               finish();
      }
  ));

finish(); API

share|improve this answer
finish() from where ? – Adham Jul 4 '11 at 13:36
finish is called on your Activity – Blundell Jul 4 '11 at 13:37

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.