Closed zimmerrol closed 5 years ago
I can confirm that this issue is indeed present.
I'm seeing the same issue.
Still an issue with Xamarin Forms 3.2.0.839982.
Is there an official update about this?
Can anyone report a version which does not have this bug?
Still an issue with Xamarin Forms 3.3.0.967583.
Any progress on this issue?
Still an issue with Xamarin Forms 3.4.0.1008975. :-(
A workaround: override StartSupportActionMode
and OnSupportActionModeFinished
on your main activity, use that to determine when to ignore the single click. Horrible, but seems to work.
Duplicate of #1932
Description
When using a
TapGestureRecognizer
inside aGrid
in aViewCell
together withContextActions
thetap
event will be fired every time the user interacts with the item, even when the user is doing a longclick, which should open to action menu.Steps to Reproduce
Expected Behavior
The context action menu should open and the user should be able to interact which the actions.
Actual Behavior
The context action menu is opened, but at the same time tap event of the gesture recognizer is called. If you are using this event to navigate (e.g. to a detail page) the user will not be able to use the action menu properly.
Basic Information
Reproduction Link
I uploaded a gist of the xaml which creates this problem.