Class PlaneGestureAdapter
- java.lang.Object
-
- android.view.GestureDetector.SimpleOnGestureListener
-
- com.avaya.clientservices.media.gui.PlaneGestureAdapter
-
- All Implemented Interfaces:
android.view.GestureDetector.OnContextClickListener,android.view.GestureDetector.OnDoubleTapListener,android.view.GestureDetector.OnGestureListener,PlaneGestureListener
public class PlaneGestureAdapter extends android.view.GestureDetector.SimpleOnGestureListener implements PlaneGestureListener
A convenience class to extend when you only want to listen for a subset of all the gestures. This implements all methods inPlaneGestureListenerbut does nothing and returnsfalsefor all applicable methods.
-
-
Constructor Summary
Constructors Constructor Description PlaneGestureAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonScrollEnded(android.view.MotionEvent e1, android.view.MotionEvent e2)Notified when a scroll occurs with the initial on downMotionEventand the last moveMotionEvent.-
Methods inherited from class android.view.GestureDetector.SimpleOnGestureListener
onContextClick, onDoubleTap, onDoubleTapEvent, onDown, onFling, onLongPress, onScroll, onShowPress, onSingleTapConfirmed, onSingleTapUp
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
onScrollEnded
public void onScrollEnded(android.view.MotionEvent e1, android.view.MotionEvent e2)Notified when a scroll occurs with the initial on downMotionEventand the last moveMotionEvent.- Specified by:
onScrollEndedin interfacePlaneGestureListener- Parameters:
e1- the first down motion event that started the scrollinge2- the move motion event that triggered the last onScroll in the sequence
-
-