I am overriding the backbutton with a onBackPressed() function
how do I also detect long clicks on the backbutton? Is there an equivalent of @Override onBackLongPressed() ?
|
I am overriding the backbutton with a onBackPressed() function how do I also detect long clicks on the backbutton? Is there an equivalent of @Override onBackLongPressed() ?
| |||
|
feedback
|
|
This might help you (Check the first comment) - Android long key press | |||||||
|
feedback
|
|
Check "Story 2" here. There's not a shortcut for it like there is onBackPressed(). | |||
|
feedback
|
|
I think you'll have to use onKeyLongPress and handle the KEYCODE_BACK event yourself. | |||
|
feedback
|