Aviran
Aviran

Reputation: 5468

Android Horizontal Scroll View full scroll right doesnt go all the way

hsv.fullScroll(HorizontalScrollView.FOCUS_RIGHT);

Takes my HorizontalScrollView 99% to the right but not 100%, I need to scroll the view all the way to the right. Any idea what goes wrong?

Upvotes: 1

Views: 2221

Answers (1)

Aviran
Aviran

Reputation: 5468

This can be solved by using a ViewTreeObserver applied on the HorizontalScrollView

An example can be found here:

Android - HorizontalScrollView will not scroll all the way

Upvotes: 1

Related Questions