【Android Tip】
【Android GestureDetector 手势识别 抬起 操作】
关于GestureDetector的用法,大家自行Google
这里只说一个小点:就是手势监听中缺失对下面情况的监听:
down->scroll->up(手指离开屏幕的时候没有在移动,onFling不能捕捉到这个事件)
解决方案:
在onTouchEvent方法中重新捕捉这个事件
我们知道,Android的事件处理中如果返回true说明要消耗事件,看过GestureDetector的源码后,发现上面的事件没有被消耗,这样我们可以再次捕捉这个事件。
废话不说,上代码:
@OverridepublicbooleanonTouchEvent(MotionEvent event) {booleandetectedUp = event.getAction() == MotionEvent.ACTION_UP;
if( !mGestureDetector.onTouchEvent(event) && detectedUp ) {
onUp(event);
}
return true;
}
思路来自 :StackOverflow