I would like to implement some logic using MotionEvent.getPointerCount() in onFling() of SimpleGestureDetector, however no MotionEvent s are passed into onFling containing any pointer information. On top of this, onFling isn’t even called when multiple touch pointers are involved. What do I do? Are there work-arounds? Help!
I would like to implement some logic using MotionEvent.getPointerCount() in onFling() of SimpleGestureDetector, however
Share
As far as I know the simple OnGestureListener provided by the android system does not support multi-touch events. You’ll have to detect it yourself by implementing the OnTouchListener