A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
Hi @fatih uyanık ,
Thanks for reaching out.
On Android, when TalkBack is enabled, the system changes how touch input is handled so it can support explore-by-touch and focus navigation. Because of this, raw touch events are not always delivered to applications in the same way as when TalkBack is off. As a result, capturing arbitrary drawing gestures directly is not reliable while TalkBack is active.
Detecting custom drawn gestures while TalkBack is active is limited by how the Android accessibility framework works, so adapting the interaction model tends to be more reliable than trying to intercept those touch events directly.
Hope this helps! If my answer was helpful - kindly follow the instructions here so others with the same problem can benefit as well.