android.view
Interface GestureDetector.OnGestureListener

All Known Implementing Classes:
Gallery, GestureDetector.SimpleOnGestureListener
Enclosing class:
GestureDetector

public static interface GestureDetector.OnGestureListener


Method Summary
 boolean onDown(MotionEvent e)
           
 boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY)
           
 void onLongPress(MotionEvent e)
           
 boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY)
           
 void onShowPress(MotionEvent e)
           
 boolean onSingleTapUp(MotionEvent e)
           
 

Method Detail

onDown

boolean onDown(MotionEvent e)

onShowPress

void onShowPress(MotionEvent e)

onSingleTapUp

boolean onSingleTapUp(MotionEvent e)

onScroll

boolean onScroll(MotionEvent e1,
                 MotionEvent e2,
                 float distanceX,
                 float distanceY)

onLongPress

void onLongPress(MotionEvent e)

onFling

boolean onFling(MotionEvent e1,
                MotionEvent e2,
                float velocityX,
                float velocityY)


Copyright © 2008-2012. All Rights Reserved.