public static class SidewaysShoveGestureDetector.SimpleOnSidewaysShoveGestureListener extends java.lang.Object implements SidewaysShoveGestureDetector.OnSidewaysShoveGestureListener
| Constructor and Description |
|---|
SimpleOnSidewaysShoveGestureListener() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
onSidewaysShove(SidewaysShoveGestureDetector detector,
float deltaPixelsSinceLast,
float deltaPixelsSinceStart)
Called for every sideways shove change during the gesture.
|
boolean |
onSidewaysShoveBegin(SidewaysShoveGestureDetector detector)
Indicates that the sideways shove gesture started.
|
void |
onSidewaysShoveEnd(SidewaysShoveGestureDetector detector,
float velocityX,
float velocityY)
Indicates that the sideways shove gesture ended.
|
public SimpleOnSidewaysShoveGestureListener()
public boolean onSidewaysShoveBegin(SidewaysShoveGestureDetector detector)
SidewaysShoveGestureDetector.OnSidewaysShoveGestureListeneronSidewaysShoveBegin in interface SidewaysShoveGestureDetector.OnSidewaysShoveGestureListenerdetector - this detectorSidewaysShoveGestureDetector.OnSidewaysShoveGestureListener.onSidewaysShove(SidewaysShoveGestureDetector, float, float) callbacks,
false if you want to ignore this gesture.public boolean onSidewaysShove(SidewaysShoveGestureDetector detector, float deltaPixelsSinceLast, float deltaPixelsSinceStart)
SidewaysShoveGestureDetector.OnSidewaysShoveGestureListeneronSidewaysShove in interface SidewaysShoveGestureDetector.OnSidewaysShoveGestureListenerdetector - this detectordeltaPixelsSinceLast - pixels delta change since the last calldeltaPixelsSinceStart - pixels delta change since the start of the gesturepublic void onSidewaysShoveEnd(SidewaysShoveGestureDetector detector, float velocityX, float velocityY)
SidewaysShoveGestureDetector.OnSidewaysShoveGestureListeneronSidewaysShoveEnd in interface SidewaysShoveGestureDetector.OnSidewaysShoveGestureListenerdetector - this detectorvelocityX - velocityX of the gesture in the moment of lifting the fingersvelocityY - velocityY of the gesture in the moment of lifting the fingers