This single line which I use in my code makes the fling, but it slows down at the end.
mScroller.fling(getScrollX(), getScrollY(), velocityX, velocityY, 0, right - width, 0, bottom - height);
So how can I remove the deceleration/slowing down of the scroller.
PS: I have tried adding Interpolator
to Scroller
but still same issue.
I ended up using this instead which works fine: