I have tried with ScrollView FOCUS_DOWN but not scrolling to the bottom, it scrolls near bottom. It must be done after adding a LinearLayout element.
My code:
LinearLayoutView.addView(txtView);
scroll.addView(LinearLayoutView);
scroll.fullScroll(ScrollView.FOCUS_DOWN);
Thanks
Fixed using the following code:
scroll.post(new Runnable() {
@Override
public void run() {
scroll.fullScroll(ScrollView.FOCUS_DOWN);
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With