I am creating app that needs to scroll slowlly the scrollview automatically to bottom and lock at the bottom. I have tried several ways but it does not functuation correctly? any library or source code?
Asked
Active
Viewed 652 times
1 Answers
2
Android: ScrollView force to bottom
Check this link. May be you get the desired result.
Edit:
new CountDownTimer(2000, 20) {
public void onTick(long millisUntilFinished) {
scrolView.scrollTo((x,y));
}
public void onFinish() {
}
}.start();
or instead of scrollTo() try using scrollBy()
-
I need to do scrolling slowly – manitaz Nov 14 '14 at 10:29