Reputation: 5430
is it possible to have interpolator on scrollview? I'd like to have nice animation when scrolling.
I have columns in horizontalscrollview, and I want to scroll to begining of each column with interpolator or sth simmilar.
Is it possible?
Upvotes: 0
Views: 1746
Reputation: 6397
Using the HorizontalScrollView from the sdk, no.
The Scroller used in that view is declared private and no other access methods are provided.
You could extract the HorizontalScrollView code from the sdk and make changes that way.
Upvotes: 1