1

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?

manitaz
  • 1,181
  • 2
  • 9
  • 26

1 Answers1

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()

Community
  • 1
  • 1
Rohit
  • 810
  • 2
  • 9
  • 34