滚动完成时的事件
在 ScrollView (垂直或水平)中如何知道滚动动画何时完成?
我用 smoothScrollBy 或 smoothScrollTo 启动动画
In a ScrollView (Vertical or Horizontal) how to know when the scroll animation is done?
I start the animation with smoothScrollBy or smoothScrollTo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须子类化
ScrollView
才能使用onScrollChanged
。请参阅另一个问题:
同步 ScrollView 滚动位置 - android
You'll have to subclass
ScrollView
to useonScrollChanged
.See this other SO question:
Synchronise ScrollView scroll positions - android