Interface ZoomableSharingView.ZoomableSharingViewActionListener
-
- All Known Subinterfaces:
ZoomableImageView.ZoomableImageViewActionListener
- All Known Implementing Classes:
WhiteboardRenderer
- Enclosing interface:
- ZoomableSharingView
public static interface ZoomableSharingView.ZoomableSharingViewActionListenerAction listener for touch events: single tap, long press, touch.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonLongPress(float x, float y)Long press gesture was done on this view.voidonSingleTap(float x, float y)Single tap gesture was done on this view.
-
-
-
Method Detail
-
onSingleTap
void onSingleTap(float x, float y)Single tap gesture was done on this view.- Parameters:
x- coordinate of tap gesture.y- coordinate of tap gesture.
-
onLongPress
void onLongPress(float x, float y)Long press gesture was done on this view.- Parameters:
x- coordinate of long press gesture.y- coordinate of long press gesture.
-
-