Android 手势处理

手势处理有两种中:触摸和手势处理;

触摸适合简单的情况:按下,抬起,移动,取消,移除边界。

@Override

public booleanonTouch(View view,MotionEvent motionEvent) {

//在motionEvent中获得具体动作参数

intaction = MotionEventCompat.getActionMasked(motionEvent);

switch(action) {

//按下

case(MotionEvent.ACTION_DOWN) :

Log.i("tedu","Action was DOWN"+"x="+ motionEvent.getX()+"\ny="+ motionEvent.getY());

//返回true 是完全消费,onclick方法不能处罚,false不完全消费,onclick方法依然能触发

//触摸事件传递中会说到

return true;

//手指在屏幕上移动

case(MotionEvent.ACTION_MOVE) :

Log.i("tedu","Action was MOVE"+"x="+ motionEvent.getX()+"\ny="+ motionEvent.getY());

return true;

//手指离开屏幕

case(MotionEvent.ACTION_UP) :

Log.i("tedu","Action was UP"+"x="+ motionEvent.getX()+"\ny="+ motionEvent.getY());

return true;

//动作被取消,被系统取消

case(MotionEvent.ACTION_CANCEL) :

Log.i("tedu","Action was CANCEL");

return true;

//离开边界

case(MotionEvent.ACTION_OUTSIDE) :

Log.i("tedu","Movement occurred outside bounds "+

"of current screen element");

return true;

default:

return false;

}}

提示:通过motionEvent获得手指坐标的方法getX(),getY(),getRawX(),getRawY()

getX()是表示Widget相对于自身左上角的x坐标

getRawX()是表示相对于屏幕左上角的x坐标值

使用:获得控件实例,设置触摸监听

TextView tv = (TextView)findViewById(R.id.text);

textView.setOnClickListener(newView.OnClickListener() {

@Override

public voidonClick(View view) {}});

GestureDetector:这个手势处理更专业:

GestureDetector类对外提供了两个接口:OnGestureListener,OnDoubleTapListener进行手势处理:

OnGestureListener有下面的几个动作:

按下(onDown): 刚刚手指接触到触摸屏的那一刹那,就是触的那一下。

抛掷(onFling): 手指在触摸屏上迅速移动,并松开的动作。

长按(onLongPress): 手指按在持续一段时间,并且没有松开。

滚动(onScroll): 手指在触摸屏上滑动。

按住(onShowPress): 手指按在触摸屏上,它的时间范围在按下起效,在长按之前。

抬起(onSingleTapUp):手指离开触摸屏的那一刹那。

onScroll(MotionEvent motionEvent,MotionEvent motionEvent1, float v , float v1)

motionEvent:

The first down motion event that started the   scrolling.

motionEvent1:

The move motion event that triggered the current onScroll.

v:

The distance along the X axis that has been scrolled   since the last call to onScroll. This is NOT the distance between e1 and e2.

v1:

The distance along the Y axis that has been scrolled   since the last call to onScroll. This is NOT the distance between e1 and e2.

参数说明:

OnDoubleTapListener

onDoubleTap(MotionEvent e):双击的时候,第二次按下的时候出发

onDoubleTapEvent(MotionEvent e):通知DoubleTap手势中的事件,包含down、up和move事件(这里指的是在双击之间发生的事件,例如在同一个地方双击会产生DoubleTap手势,而在DoubleTap手势里面还会发生down和up事件,这两个事件由该函数通知);双击的第二下Touch down和up都会触发,可用e.getAction()区分。

onSingleTapConfirmed(MotionEvent e):用来判定该次点击是SingleTap而不是DoubleTap,如果连续点击两次就是DoubleTap手势,如果只点击一次,系统等待一段时间后没有收到第二次点击则判定该次点击为SingleTap而不是DoubleTap,然后触发SingleTapConfirmed事件。这个方法不同于onSingleTapUp,他是在GestureDetector确信用户在第一次触摸屏幕后,没有紧跟着第二次触摸屏幕,也就是不是“双击”的时候触发

SimpleOnGestureListener

当手势过多,我们只想用其中的一个或几个,不需要全部从写,那么继承来自SimpleOnGestureListener是最好的,内部已经帮我们实现了以上的接口;

如何使用:

1.创建实例:

GestureDetectorCompat detector;

detector =newGestureDetectorCompat(Context context,OnGestureListener listener);

参数说明:

context  上下文对象;

listener:OnGestureListener的实现类

2.将手势检测器设置为双次敲击侦听器。

detector.setOnDoubleTapListener(OnDoubleTapListener listener);

listener:为OnDoubleTapListener接口的实现类

3.为控件添加手势处理事件;

TextView tv = (TextView)findViewById(R.id.text);

tv.setOnTouchListener(newOnTouchListener() {

public boolean onTouch(View v, MotionEvent event) {

MainActivity.this.detector.onTouchEvent(event);

if (mGestureDetector.onTouchEvent(event))

return true;

else  return false;

 }});

你可能感兴趣的:(Android 手势处理)