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.
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.