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.
|
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.
| |||
|
feedback
|
|
From Event Listeners:
Are you returning Edited to add: For a ListView, you may be using | ||||
|
feedback
|
|
You can add dependencies between the recognizers. For instance:
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. | |||
|
feedback
|