Skip to content

PointerGestureRecognizer Does Not Work on Android #20849

@owaits

Description

@owaits

Description

I am not able to get the PointerPressed event of PointerGestureRecognizer to work on Android. A brief look at the code would suggest its not even been implemented. I was trying to achieve a long press and managed to get this to work on Windows but on Android it does not work. After going round in a few circles it appears this just does not work on Android but I can find very little info to confirm this. The original task to implement Pointer gestures seems to not include an Android implemtation.

Steps to Reproduce

  1. Create New Maui App
  2. Modify the code as bellow:
<Label
    Text="Hello, World!"
    Style="{StaticResource Headline}"
    SemanticProperties.HeadingLevel="Level1" >
    <Label.GestureRecognizers>
        <PointerGestureRecognizer PointerPressed="PointerGestureRecognizer_PointerPressed" />
    </Label.GestureRecognizers>
</Label>
      private void PointerGestureRecognizer_PointerPressed(object sender, PointerEventArgs e)
      {
          count++;

          if (count == 1)
              CounterBtn.Text = $"Clicked {count} time";
          else
              CounterBtn.Text = $"Clicked {count} times";
      }
  1. Run on Android and press the Hello World label, the counter is not incremented but on Windows and IOS it is.

Link to public reproduction project repository

No response

Version with bug

8.0.3 GA

Is this a regression from previous behavior?

No, this is something new

Last version that worked well

Unknown/Other

Affected platforms

Android

Affected platform versions

No response

Did you find any workaround?

No

Relevant log output

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    area-gesturesGesture typesplatform/androids/triagedIssue has been revieweds/verifiedVerified / Reproducible Issue ready for Engineering Triaget/bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions