Nikhil
Nikhil

Reputation: 2318

Setting the scroll back to its position

So I have this app where I get the next question in an activity and I have a scroll for it which is working just fine.. the problem is when I get the next question the scroll will be in its previous position..how do I set it back to zero?

Upvotes: 1

Views: 246

Answers (1)

MByD
MByD

Reputation: 137362

Assuming you are using ScrollView, you can use scrollTo or smoothScrollTo:

myScrollView.scrollTo(0,0);

Upvotes: 3

Related Questions