Gesture Detector
New version 1.2 (freeware)
I added a return value to the onTouch event. If you set it to True, the event is handled by the view (it's the same behavior as before). If set to False, the event is ignored and passed down to another view under the finger.
New version 2.1 (donationware)
I added a return value to the onTouch event. If you set it to True, the event is handled by the view (it's the same behavior as before). If set to False, the event is ignored and passed down to another view under the finger.
I added two new functions: CreateMotionEvent and PassTouchEventTo.
With these new functions, it's now possible to generate touch events or to pass a touch event down to another view in the activity.
I added a demo, GD_Dispatch, to illustrate these new features.