Hello,
Welcome to our Microsoft Q&A platform!
You do not need to get Coordinates from native android, you could handle the drag and drop in Forms directly.
public class PanContainer : ContentView
{
private double x, y;
public PanContainer()
{
var panGesture = new PanGestureRecognizer();
panGesture.PanUpdated += OnPanUpdated;
this.GestureRecognizers.Add(panGesture);
}
private void OnPanUpdated(object sender, PanUpdatedEventArgs e)
{
switch (e.StatusType)
{
case GestureStatus.Started:
break;
case GestureStatus.Running:
Content.TranslationX = x + e.TotalX;
Content.TranslationY = y + e.TotalY;
break;
case GestureStatus.Completed:
x = Content.TranslationX;
y = Content.TranslationY;
break;
}
}
}
With xaml layout.
<AbsoluteLayout>
<local:PanContainer AbsoluteLayout.LayoutFlags="All" AbsoluteLayout.LayoutBounds="0,0,1,1" HeightRequest="100" WidthRequest="100" >
<StackLayout VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand">
<Image Background="red" HeightRequest="20" WidthRequest="20" />
</StackLayout>
</local:PanContainer>
</AbsoluteLayout>
Best Regards,
Leon Lu
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.