Android: Scrolling to the bottom of a ScrollView
turned_in_not auto-scroll, ScrollView
comment 4 Comments
Iv’e had a lot of trouble scrolling a ScrollView all the way to the bottom in android and I finally got the way to do it ! Here is the code: scrollView.post(new Runnable() { public void run() { scrollView.fullScroll(View.FOCUS_DOWN); }…