Android disable scroll animation

How to stop Android scrollviewfrom scrolling inertia? The default use is when I scroll faster, it continues to scroll further when I lift my finger from the device.

I would just like to stop scrolling when I let go. Is there a flag in XML scrollviewfor this?

+3
source share
1 answer

There is setSmoothScrollbarEnabled () - a method that should deactivate this behavior. It also has an XML attribute called smoothScrollbar .

+2
source

All Articles