Interface MultiTouchGestureListener
-
- All Known Implementing Classes:
MultiTouchGestureAdapter
public interface MultiTouchGestureListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonTouchCancel(double time)booleanonTouchDown(double time, float x, float y)voidonTouchMove(double time, float x, float y)voidonTouchScaleBegan(double time)voidonTouchScaleChanged(double time, float scale)voidonTouchScaleEnded(double time)voidonTouchTransfer(double time, float dx, float dy)voidonTouchUp(double time, float x, float y)
-
-
-
Method Detail
-
onTouchDown
boolean onTouchDown(double time, float x, float y)
-
onTouchMove
void onTouchMove(double time, float x, float y)
-
onTouchUp
void onTouchUp(double time, float x, float y)
-
onTouchCancel
void onTouchCancel(double time)
-
onTouchTransfer
void onTouchTransfer(double time, float dx, float dy)
-
onTouchScaleBegan
void onTouchScaleBegan(double time)
-
onTouchScaleChanged
void onTouchScaleChanged(double time, float scale)
-
onTouchScaleEnded
void onTouchScaleEnded(double time)
-
-