I'm trying to detect when a ScrollView has finished scrolling so I can slightly modify its position. Before I was using ACTION_UP to detect when the user lifted their finger, but then I realized this wouldn't allow me to use "flinging" as it would modify the scroll before it was finished.
Is there any way to detect when a ScrollView has finished scrolling? Or detect its scroll state like ListView?
Any other ideas on how to implement this?
Thanks.