Android Question How do I make a scrollview jump to a position?

Levisvv

Member
Licensed User
Longtime User
I have an app with a long scrollview and if somebody chooses an item (button) at the bottom, I want the view to automatically scroll to the very top of the scrollview, like in HTTP. How can I do this?
 

Inman

Well-Known Member
Licensed User
Longtime User
YourScrollView.FullScroll(False)

Using True instead of False will scroll to the bottom
 
Upvote 0
Top