|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.support.v4.view.GestureDetectorCompat
public class GestureDetectorCompat
Detects various gestures and events using the supplied MotionEvent
s.
The GestureDetector.OnGestureListener
callback will notify users when a particular
motion event has occurred. This class should only be used with MotionEvent
s
reported via touch (don't use for trackball events).
This compatibility implementation of the framework's GestureDetector guarantees the newer focal point scrolling behavior from Jellybean MR1 on all platform versions.
To use this class:GestureDetectorCompat
for your View
View.onTouchEvent(MotionEvent)
method ensure you call
onTouchEvent(MotionEvent)
. The methods defined in your callback
will be executed when the events occur.
Constructor Summary | |
---|---|
GestureDetectorCompat(android.content.Context context,
android.view.GestureDetector.OnGestureListener listener)
Creates a GestureDetectorCompat with the supplied listener. |
|
GestureDetectorCompat(android.content.Context context,
android.view.GestureDetector.OnGestureListener listener,
android.os.Handler handler)
Creates a GestureDetectorCompat with the supplied listener. |
Method Summary | |
---|---|
boolean |
isLongpressEnabled()
|
boolean |
onTouchEvent(android.view.MotionEvent event)
Analyzes the given motion event and if applicable triggers the appropriate callbacks on the GestureDetector.OnGestureListener supplied. |
void |
setIsLongpressEnabled(boolean enabled)
Set whether longpress is enabled, if this is enabled when a user presses and holds down you get a longpress event and nothing further. |
void |
setOnDoubleTapListener(android.view.GestureDetector.OnDoubleTapListener listener)
Sets the listener which will be called for double-tap and related gestures. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public GestureDetectorCompat(android.content.Context context, android.view.GestureDetector.OnGestureListener listener)
context
- the application's contextlistener
- the listener invoked for all the callbacks, this must
not be null.Handler.Handler()
public GestureDetectorCompat(android.content.Context context, android.view.GestureDetector.OnGestureListener listener, android.os.Handler handler)
context
- the application's contextlistener
- the listener invoked for all the callbacks, this must
not be null.handler
- the handler that will be used for posting deferred messagesHandler.Handler()
Method Detail |
---|
public boolean isLongpressEnabled()
public boolean onTouchEvent(android.view.MotionEvent event)
GestureDetector.OnGestureListener
supplied.
event
- The current motion event.
GestureDetector.OnGestureListener
consumed the event,
else false.public void setIsLongpressEnabled(boolean enabled)
enabled
- whether longpress should be enabled.public void setOnDoubleTapListener(android.view.GestureDetector.OnDoubleTapListener listener)
listener
- the listener invoked for all the callbacks, or
null to stop listening for double-tap gestures.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |