I want know how to perform a drag on android based in X, Y mouse coordinates? consider as two simple examples, the Team Viewer/QuickSupport drawing the \"password pattern\" on r
Have you tried to use AutoIt scripting?
You can save coordinates within specific windows/screens. You can hold mouseclick pressed while drawing the pattern.
I also have some example code / scripts for you if you want them!
EDIT:
According to this tutorial you can use Auto-IT on C#.
Follow these steps:
Using AutoItX3Lib;
AutoItX3 auto = new AutoItX3();
This is the complete example for executing a mouseclick:
Using AutoItX3Lib;
AutoItX3 auto = new AutoItX3();
auto.MouseClick("left", 78, 1133, 1, 35)
With the AutoIt Window Info Tool
you can check the coordinates you want to use.
Please note there are differences between mouse coordinates modes:
for example: auto.AutoItSetOption("MouseCoordMode", 1)
will use absolute screen coordinates. See source here.
For holding the mouseclick down, you can check MouseDown Function