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?
|
First case
Second case
Which case is better to override backKeypress event? |
||||
|
|
If you want to catch the back press prior to 2.0, you can use the
Interestingly, if you override both the onBackPressed and onKeyDown, both will catch the back press with If you call Unless you have a specific reason to target below 2.0, there isn’t much of a reason to bother. |
|||||||||||||
|
|
I think that you should use:
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. |
|||||
|
|
You should use:
|
|||
If you are talking overriding this event the first one is the right thing to implement. |
|||
|
|