简体   繁体   English

Android 禁用 Scrollview 结束动画

[英]Android disable Scrollview end animation

There is animation when reaching the end of Scrollview with great velocity.以极快的速度到达 Scrollview 的末尾时有动画。 The animation basically pulling the ScrollView up when scrolling down reaching the end, indicating that it's the end of that view.当向下滚动到达末尾时,动画基本上将 ScrollView 向上拉,表明它是该视图的结尾。 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.我的情况是 ScrollView 位于另一个具有深色背景的视图之上,并且该动画会破坏它。

I think you mean over scroll effect which can be disabled in your xml我认为您的意思是可以在您的 xml 中禁用的滚动效果

 android:overScrollMode="never"

or或者

 listView.setOverScrollMode(View.OVER_SCROLL_NEVER);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM