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.

First case

public boolean onKeyDown(int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_BACK) {

Second case

OnBackPressed();

Which case is better to override backKeypress event?

share|improve this question
The main difference is that onKeyDown is since API 1 while OnBackPressed is since API 5. – rekire Feb 21 at 14:28

4 Answers

up vote 3 down vote accepted

If you want to catch the back press prior to 2.0, you can use the onKeyDown method like so:

@Override
public boolean onKeyDown(int keyCode, KeyEvent event)  {
    if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
        //Do something on back press
    }
    return super.onKeyDown(keyCode, event);
}

Interestingly, if you override both the onBackPressed and onKeyDown, both will catch the back press with onKeyDown catching it first.

If you call super.onKeyDown in onKeyDown like we are above, then the onBackPressed method will fire. If you do not call super.onKeyDown then onBackPressed will never be called.

Unless you have a specific reason to target below 2.0, there isn’t much of a reason to bother.

share|improve this answer
Common that is not too hard to copy the relevant parts. – rekire Feb 21 at 14:35
I am just showing the difference between both. It's easy to provide the solution, but much of the answers don't provide which one is better to use. – droid dev Feb 21 at 14:38
You are contradicting the obvious. People are ** only ** saying which is better to use. And don't provide much explanation. – timmied Feb 21 at 14:40
I am not contradicting :D – droid dev Feb 21 at 14:43
1  
What I wanted to say is that you just dump a link instad of giving a short summary of the article. It is possible that the linked site get offline so your answer would be pointless. So it is better to repeat the main points and give a reference for future informations. – rekire Feb 21 at 18:41
show 1 more comment

I think that you should use:

    @Override
    public void onBackPressed() {

        //...
    }

in case when you just want to override an event. The first method is better if you want to detect that user physically clicked back key.

share|improve this answer
for second method --'in case whe you just want to override an event'? and for first method - if we wish to detect if user physicall clicked back key.. does it mean that we could fire this 'backpress event' without even physically clicking back key? – Darpan Feb 22 at 9:31
Yes, you can just call onBackPressed(); – Michał Z. Feb 22 at 10:05

You should use:

    @Override
    public void onBackPressed() {

    }
share|improve this answer
2  
Don't provide duplicate answers. – droid dev Feb 21 at 14:25
That means without a good reason. – rekire Feb 21 at 14:32
Ah it seems we were typing at the same time, my bad. My answer is a bit more confident though :P – timmied Feb 21 at 14:35
public boolean onKeyDown(int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_BACK) {

If you are talking overriding this event the first one is the right thing to implement.

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.