滚动视图的被自动复位的问题
<HorizontalScrollView
android:id="@+id/h_scrollview_1"
android:layout_width="match_parent"
android:layout_height="100sp"
android:background="#778899"
>
<LinearLayout
android:id="@+id/linearlayout_1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#778899"
android:orientation="horizontal"
>
</LinearLayout>
</HorizontalScrollView>
<ScrollView
android:id="@+id/v_scrollview_1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#998877"
android:layout_below="@+id/h_scrollview_1"
>
<RelativeLayout
android:id="@+id/relativelayout_1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#007f7f"
>
</RelativeLayout>
</ScrollView>