I have created one activity which is containing one map, image and another text view, and I have added \"scrollview\" tag for it. But after the activity starts it scrolls to the
In case you do want to set this manually using Java;
Try this- it really works:
Use FOCUS_UP to scroll to the top and FOCUS_DOWN to scroll it to the Bottom.
scrollView.post(new Runnable() {
public void run() {
scrollView.fullScroll(View.FOCUS_UP);
}