views:

35

answers:

1

I have a ScrollView (and a LinearLayout within it) set as main content. When the user scrolls the view further down, and then if I replace it's child (LinearLayout) with another LinearLayout, the view remains in the scrolled positioned.

How do I reset the ScrollView back to coordinate 0?

A: 

Its all in the documentation... http://developer.android.com/reference/android/widget/ScrollView.html search for fullScroll(int)

WarrenFaith