We have created a simple sample with layout structure using AbsoluteLayout along with HandlerChanged event and Grid. The Grid has another nested Grid having TapGestureRecognizer for handling tap gestures. In the code-behind we have invoked Touch event for Android. Upon deploying the sample, when touching the child Grid, the Touch event is not triggered, thus the touch is not passed to the parent.
Steps to Reproduce
Create dotnet maui default project.
Add an AbsoluteLayout element and subscribe to the HandlerChanged event in the code-behind.
Inside the AbsoluteLayout, add a Grid element and define its layout properties.
Inside the first Grid, add another Grid element to create a nested structure.
Add a TapGestureRecognizer to the nested Grid in order to handle tap events.
Deploy the application on the Android platform.
Touch the child Grid area.
Observe if the Touch event handler is triggered (in our case the Touch event is not triggered)
Description
We have created a simple sample with layout structure using
AbsoluteLayout
along withHandlerChanged
event andGrid
. The Grid has another nested Grid havingTapGestureRecognizer
for handling tap gestures. In the code-behind we have invokedTouch
event for Android. Upon deploying the sample, when touching the childGrid
, theTouch
event is not triggered, thus the touch is not passed to the parent.Steps to Reproduce
AbsoluteLayout
element and subscribe to theHandlerChanged
event in the code-behind.AbsoluteLayout
, add aGrid
element and define its layout properties.Grid
, add anotherGrid
element to create a nested structure.TapGestureRecognizer
to the nestedGrid
in order to handle tap events.Grid
area.Touch
event handler is triggered (in our case the Touch event is not triggered)The issue reproducible sample is added below: AbsoluteLayoutTouch.zip
Link to public reproduction project repository
No response
Version with bug
Unknown/Other
Is this a regression from previous behavior?
Not sure, did not test other versions
Last version that worked well
Unknown/Other
Affected platforms
Android
Affected platform versions
No response
Did you find any workaround?
No response
Relevant log output
No response