I am using an android gallery, is there any listener or way that I can know that is triggered when the user starts moving, stops moving, slows down or moves?
I see that you can override the following method
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
return super.onFling(e1, e2, velocityX, velocityY);
}
but how do you know if scrolling will stop or start?
source
share