GestureDetectorCompat:
GestureDetector的替代版,存在于v4包中,更兼容更好用的手势识别工具类。
有了这一神器,不需要对touch事件写一堆代码判断手势了。
Public constructors
GestureDetectorCompat(Contextcontext,GestureDetector.OnGestureListenerlistener)
GestureDetectorCompat(Contextcontext,GestureDetector.OnGestureListenerlistener,Handlerhandler)
首先实例化一个GestureDetectorCompat,需要上下文和一个OnGestureListenerlistener。
先演示一下activity的触摸手势
实例化:
mDetectorCompat=newGestureDetectorCompat(this,this);
activity实现OnGestureListenerlistener接口:
public classMainActivityextendsAppCompatActivityimplementsGestureDetector.OnGestureListener
重写六个方法:
@Override
public booleanonDown(MotionEvent motionEvent)
{
Log.e(TAG,"onDown:刚刚手指接触到触摸屏的那一刹那,就是触的那一下 ");
return false;
}
@Override
public voidonShowPress(MotionEvent motionEvent)
{
Log.e(TAG,"onShowPress:手指按在触摸屏上,它的时间范围在按下起效,在长按之前 ");
}
@Override
public booleanonSingleTapUp(MotionEvent motionEvent)
{
Log.e(TAG,"onSingleTapUp:手指离开触摸屏的那一刹那 ");
return false;
}
@Override
public booleanonScroll(MotionEvent motionEvent,MotionEvent motionEvent1, floatv, floatv1)
{
Log.e(TAG,"onScroll:手指在触摸屏上滑动 ");
return false;
}
@Override
public voidonLongPress(MotionEvent motionEvent)
{
Log.e(TAG,"onLongPress:手指按在持续一段时间,并且没有松开 ");
}
@Override
public booleanonFling(MotionEvent motionEvent,MotionEvent motionEvent1, floatv, floatv1)
{
Log.e(TAG,"onFling:手指在触摸屏上迅速移动,并松开的动作 ");
return false;
}
ok,然后重写activity的onTouchEvent方法,把事件交给GestureDetectorCompat处理:
@Override
public booleanonTouchEvent(MotionEvent event)
{
mDetectorCompat.onTouchEvent(event);
return super.onTouchEvent(event);
}
手指在屏幕上点击然后松开,打印如下:
08-11 15:46:55.524 20341-20341/org.asi.recycleviewtouch E/MainActivity: onDown:刚刚手指接触到触摸屏的那一刹那,就是触的那一下
08-11 15:46:55.581 20341-20341/org.asi.recycleviewtouch E/MainActivity: onSingleTapUp:手指离开触摸屏的那一刹那
手指在屏幕上滑动,打印如下:
08-11 15:47:34.958 20341-20341/org.asi.recycleviewtouch E/MainActivity: onDown:刚刚手指接触到触摸屏的那一刹那,就是触的那一下
08-11 15:47:34.994 20341-20341/org.asi.recycleviewtouch E/MainActivity: onScroll:手指在触摸屏上滑动
08-11 15:47:35.104 20341-20341/org.asi.recycleviewtouch E/MainActivity: onScroll:手指在触摸屏上滑动
08-11 15:47:35.104 20341-20341/org.asi.recycleviewtouch E/MainActivity: onFling:手指在触摸屏上迅速移动,并松开的动作
手指在屏幕上长按,打印如下:
08-11 15:48:01.525 20341-20341/org.asi.recycleviewtouch E/MainActivity: onDown:刚刚手指接触到触摸屏的那一刹那,就是触的那一下
08-11 15:48:01.620 20341-20341/org.asi.recycleviewtouch E/MainActivity: onShowPress:手指按在触摸屏上,它的时间范围在按下起效,在长按之前
08-11 15:48:02.120 20341-20341/org.asi.recycleviewtouch E/MainActivity: onLongPress:手指按在持续一段时间,并且没有松开
View的触摸手势识别
mTvTouch= (TextView) findViewById(R.id.tv_touch);
mTvTouch.setOnTouchListener(newView.OnTouchListener()
{
@Override
public booleanonTouch(View view,MotionEvent motionEvent)
{
mDetectorCompat.onTouchEvent(motionEvent);
return false;
}
});
SimpleOnGestureListener:
当你想识别一两个手势,而嫌弃重写六个方法太冗余的时候,SimpleOnGestureListener就可以满足你的洁癖
GestureDetector.SimpleOnGestureListenermSimpleOnGestureListener=newGestureDetector.SimpleOnGestureListener(){};
要什么手势,就重写什么方法。