Whenever I start this activity, it always starts bottomed out--scrolled all the way to the bottom. I am not doing anything weird in the activity OnCreate (or anywhere for th
scrollView.requestFocus(View.FOCUS_UP) solved my problem when I wanted the top view to be visible.
Specifying direction parameter to the method requestFocus(int direction) is a good way to control the ScrollView position. More details here.