Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. LinearInterpolator scrollInterpolator = new LinearInterpolator();
  2. Scroller scroller = new Scroller(this,scrollInterpolator);
  3. scroller.extendDuration(10000);//I thought this was 10 seconds
  4. text1.setScroller(scroller);
  5.  
  6. scrollView.post(new Runnable() {
  7. @RequiresApi(api = Build.VERSION_CODES.HONEYCOMB)
  8. @Override
  9. public void run() {
  10. scrollView.fullScroll(ScrollView.FOCUS_DOWN);
  11.  
  12. }
  13. });
Add Comment
Please, Sign In to add comment