public static interface StandardScaleGestureDetector.StandardOnScaleGestureListener
| Modifier and Type | Method and Description |
|---|---|
boolean |
onScale(StandardScaleGestureDetector detector)
You can retrieve the base
ScaleGestureDetector via StandardScaleGestureDetector.getUnderlyingScaleGestureDetector(). |
boolean |
onScaleBegin(StandardScaleGestureDetector detector)
You can retrieve the base
ScaleGestureDetector via StandardScaleGestureDetector.getUnderlyingScaleGestureDetector(). |
void |
onScaleEnd(StandardScaleGestureDetector detector,
float velocityX,
float velocityY)
You can retrieve the base
ScaleGestureDetector via StandardScaleGestureDetector.getUnderlyingScaleGestureDetector(). |
boolean onScaleBegin(StandardScaleGestureDetector detector)
ScaleGestureDetector via StandardScaleGestureDetector.getUnderlyingScaleGestureDetector().detector - this detectoronScale(StandardScaleGestureDetector) callbacks,
false if you want to ignore this gesture.ScaleGestureDetector.OnScaleGestureListener.onScaleBegin(ScaleGestureDetector)boolean onScale(StandardScaleGestureDetector detector)
ScaleGestureDetector via StandardScaleGestureDetector.getUnderlyingScaleGestureDetector().detector - this detectorScaleGestureDetector.OnScaleGestureListener.onScale(ScaleGestureDetector)void onScaleEnd(StandardScaleGestureDetector detector, float velocityX, float velocityY)
ScaleGestureDetector via StandardScaleGestureDetector.getUnderlyingScaleGestureDetector().detector - this detectorvelocityX - velocityX of the gesture in the moment of lifting the fingersvelocityY - velocityY of the gesture in the moment of lifting the fingersScaleGestureDetector.OnScaleGestureListener.onScaleEnd(ScaleGestureDetector)