The ScrollView
in Android is really confusing. I'm working on an app that adds a fragment of text to a TextView
inside the ScrollView
, and I want it to scroll to the bottom of the ScrollView
.
I've tried these ways:
Scroll1.fullScroll(View.FOCUS_DOWN);
Scroll1.scrollTo(0, sv.getBottom());
Scroll1.scrollTo(0, Scroll1.getY() + Scroll1.getHeight());
NOTE:
1. Scroll1 is the ScrollView
I used. 2. The first two methods can't scroll to the bottom. The last just doesn't work.
How can I achieve this? Please help. Thanks.