Reputation: 18276
In a ScrollView (Vertical or Horizontal) how to know when the scroll animation is done?
I start the animation with smoothScrollBy or smoothScrollTo
Upvotes: 1
Views: 1628
Reputation: 36312
You'll have to subclass ScrollView
to use onScrollChanged
.
See this other SO question: Synchronise ScrollView scroll positions - android
Upvotes: 3