public interface IInputEventHandler
Modifier and Type | Method and Description |
---|---|
boolean |
onLongPress(float x,
float y)
Called when a long press occurs .
|
boolean |
onSingleTapUp(float x,
float y)
Called when a tap occurs.
|
boolean |
onTouchEvent(android.view.MotionEvent event)
This method to handle touch screen motion events.
|
boolean onSingleTapUp(float x, float y)
x
- The x coordinate on the page.y
- The y coordinate on the page.boolean onLongPress(float x, float y)
x
- The x coordinate on the page.y
- The y coordinate on the page.boolean onTouchEvent(android.view.MotionEvent event)
event
- The motion event.