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

I'm writing an application which will have two Activities, when the user presses the back button on the second activity a dialog should pop up asking the user to confirm the action. So how do I intercept this? I seriously doubt about this coz the backstack is a part of the OS itself. Has anyone found a workaround?

share|improve this question
Think hard about doing this. This is non-standard Android behavior and might annoy your users. Are you trying to avoid them losing unsaved data? – I82Much Sep 1 '10 at 4:01
Yes exactly @I82Much! – Ragunath Jawahar Sep 1 '10 at 4:23

2 Answers

up vote 18 down vote accepted

In an activity you can just override

onBackPressed()

edit: that is api lvl 5+ :/ for 4 and below you gotta override onKeyDown()

share|improve this answer
Nice, thanks @schwiz – Ragunath Jawahar Sep 1 '10 at 4:21

Simply override the onKeyDown method in your activity and look for the back button. Return true so that the event is consumed.

public boolean onKeyDown(int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_BACK) {
        //Do something here
        return true;
    }
    return super.onKeyDown(keyCode, event);
}
share|improve this answer
+1, I've done this before and it definitely works although when I used it, it was before I understood the notion of multiple activities... – Chris Thompson Sep 1 '10 at 3:57
//Do somethings here (I'm trying to display a toast for my test code) is not working for me. And when I press the back button nothing happens. – Ragunath Jawahar Sep 1 '10 at 4:08
My mistake, I didn't call Toast.show(). Working code. Thanx @skorulis – Ragunath Jawahar Sep 1 '10 at 4:16

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.