下面是我自定义的view,主要是实现左右滑动
要实现手势监听,首先要实现OnGestureListener接口
其次是实例化一个GestureDetector:mDetector = new GestureDetector(context, this);
如果只是简单的实现OnGestureListener的方法,是不能实现监听效果,
我们要将onDown , onScroll的返回值改为true,自定义view的clickable属性为true。
除此之外,我们要重写自定义view的onTouchEvent方法,onTouchEvent的返回值改为
mDetector.onTouchEvent(event);即可。
package com.uwatch.condor.view;
原文地址:http://blog.csdn.net/chengjiamei/article/details/46505271