Reputation: 20755
There is animation when reaching the end of Scrollview with great velocity. The animation basically pulling the ScrollView up when scrolling down reaching the end, indicating that it's the end of that view. How can i disable it?
My situation is that the ScrollView sitting on top of another view that has dark background and it spoils it a bit with that animation.
Upvotes: 8
Views: 5034
Reputation: 1086
I think you mean over scroll effect which can be disabled in your xml
android:overScrollMode="never"
or
listView.setOverScrollMode(View.OVER_SCROLL_NEVER);
Upvotes: 16