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() ?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

This might help you (Check the first comment) - Android long key press

link|improve this answer
ah, I will just need the keyCode – CQM Jul 15 '11 at 15:59
accept it maybe? :) – Suchi Jul 15 '11 at 16:03
The keycode is KEYCODE_BACK, by the way. As repeated a few times, now. – Rob Jul 15 '11 at 16:14
feedback

Check "Story 2" here. There's not a shortcut for it like there is onBackPressed().

link|improve this answer
feedback

I think you'll have to use onKeyLongPress and handle the KEYCODE_BACK event yourself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.