views:

110

answers:

1

What is the difference of events of onFling() and onScroll() of android.view.GestureDetector.OnGestureListener? link text

+1  A: 

onScroll() happens after the user puts his finger down on the screen and slides his finger across the screen without lifting it. onFling() happens if the user scrolls and then lifts his finger. A fling is triggered only if the motion was fast enough.

Romain Guy