How to Programmatically Scroll a ScrollView to Bottom
You need to use the message queue or else it won’t work. Try this: scrollView.post(new Runnable() { @Override public void run() { scrollView.fullScroll(ScrollView.FOCUS_DOWN); } }); This is what worked for me.