I have a ListView with listeners for a long click and a regular click.

Why, when I long press a list item, the regular click event gets called too?

I need to have two separate functions for the different clicks.

link|improve this question

46% accept rate
feedback

2 Answers

up vote 5 down vote accepted

From Event Listeners:

onLongClick() - This returns a boolean to indicate whether you have consumed the event and it should not be carried further. That is, return true to indicate that you have handled the event and it should stop here; return false if you have not handled it and/or the event should continue to any other on-click listeners.

Are you returning true from your onLongClick() and still getting the normal click event?

Edited to add: For a ListView, you may be using OnItemLongClickListener. The onItemLongClick() there uses a similar boolean return value to indicate whether it consumed the event.

link|improve this answer
feedback

You can add dependencies between the recognizers. For instance:

[_tapRecognizer requireGestureRecognizerToFail:_dtapRecognizer];

is what I use to make sure that I only get tap or double tap but not both.

NB: If you do this, your tap event will be delayed until the system is sure it's not the start of a long press.

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.