Seva Alekseyev
Seva Alekseyev

Reputation: 61398

Android: how to listen for scrolling events?

is there a way to establish a listener on the process of scrolling in a ScrollView or a HorizontalScrollView?

Upvotes: 4

Views: 8535

Answers (1)

Romain Guy
Romain Guy

Reputation: 98521

You can only create a class that extends ScrollView and override the onScrollChanged() method.

Upvotes: 9

Related Questions