Skip to main content
Replace incorrect 'uiscrollview' tag with 'scrollview'
Link
Steph Sharp
  • 11.7k
  • 5
  • 46
  • 84

Detecting when scrollView has scrolled.

Source Link
Matt
  • 2.7k
  • 4
  • 37
  • 47

Detecting when scrollView has scrolled.

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.