My problem is simple: I would like to detect when ScrollView ended a scroll animation.
- We do not have access to the Scroller object of the ScrollView.
- ScrollView.onScrollChanged is not called when it's parameters t and oldt are the same (at the end of the scroll)
The only working solution I can find is the one below, it is checking every 100 ms to see if the scroll ended, that sounds horrible to me. https://stackoverflow.com/a/10198865/1310343
Is there a more elegant solution?