I want to get the exact X and Y position where I longClicked in the window, but I found there's no method in OnLongClickListener to do this.
Is this possible?
Or I have to listen by JavaScript in the webView? How?
|
I want to get the exact X and Y position where I longClicked in the window, but I found there's no method in OnLongClickListener to do this. Is this possible? Or I have to listen by JavaScript in the webView? How?
| ||||
|
feedback
|
|
You need to implement the method
in your view and then you can see the coordinates of touching point calling the function event.getX() and event.getY() Then get this to set a couple variables that the onLongClick method can access. More info can be found here | |||
|
feedback
|
|
The complete working code looks like this. You need to overwrite onTouchEvent, indeed...
Especially, for some reason, it does not work setting an OnTouchEventListener to capture the coordinate - I'd maybe like to know why. | ||||
|
feedback
|