Mikooos
Mikooos

Reputation: 5430

Android Scrollview interpolation

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

Answers (1)

slund
slund

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

Related Questions