Reputation: 2318
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
Reputation: 137362
Assuming you are using ScrollView, you can use scrollTo or smoothScrollTo:
myScrollView.scrollTo(0,0);
Upvotes: 3