public class ScaleGestureDetector extends Object
Modifier and Type | Class and Description |
---|---|
static interface |
ScaleGestureDetector.OnScaleGestureListener |
static class |
ScaleGestureDetector.SimpleOnScaleGestureListener
A convenience class to extend when you only want to listen for a subset
of scaling-related events.
|
Constructor and Description |
---|
ScaleGestureDetector(android.content.Context context,
ScaleGestureDetector.OnScaleGestureListener listener) |
Modifier and Type | Method and Description |
---|---|
float |
getCurrentSpan()
Return the current distance between the two pointers forming the
gesture in progress.
|
long |
getEventTime()
Return the event time of the current event being processed.
|
float |
getFocusX()
Get the X coordinate of the current gesture's focal point.
|
float |
getFocusY()
Get the Y coordinate of the current gesture's focal point.
|
float |
getPreviousSpan()
Return the previous distance between the two pointers forming the
gesture in progress.
|
float |
getScaleFactor()
Return the scaling factor from the previous scale event to the current
event.
|
long |
getTimeDelta()
Return the time difference in milliseconds between the previous
accepted scaling event and the current scaling event.
|
boolean |
isInProgress()
Returns
true if a two-finger scale gesture is in progress. |
boolean |
onTouchEvent(android.view.MotionEvent event) |
public ScaleGestureDetector(android.content.Context context, ScaleGestureDetector.OnScaleGestureListener listener)
public boolean onTouchEvent(android.view.MotionEvent event)
public boolean isInProgress()
true
if a two-finger scale gesture is in progress.true
if a scale gesture is in progress, false
otherwise.public float getFocusX()
isInProgress()
would return false, the result of this
function is undefined.public float getFocusY()
isInProgress()
would return false, the result of this
function is undefined.public float getCurrentSpan()
public float getPreviousSpan()
public float getScaleFactor()
getCurrentSpan()
/ getPreviousSpan()
).public long getTimeDelta()
public long getEventTime()
Copyright © 2011–2014. All rights reserved.