問題:android
最近在寫一個程序界面,有一個scrollVIew,其中有一段內容是須要在線加載的。ide
當內容加載完成後,ScrollView中內容的長度會發生改變,這時ScrollView會自動下滾,以下圖所示:post
滾動的那一下體驗特別很差,因此要防止這種狀況。即不論Scrollview中內容如何,都要保持在最上。spa
解決辦法:.net
先簡單寫一下個人xml文件的結構:xml
- <ScrollView
- android:id="@+id/scrollView1"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_alignParentLeft="true"
- android:layout_below="@+id/linearLayout2"
- android:background="@drawable/repeat_bg"
- android:paddingBottom="5dp" >
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:paddingLeft="10dp"
- android:paddingRight="10dp"
- android:focusable="true"
- android:focusableInTouchMode="true"
- android:paddingTop="15dp" >
- <!-- 上面這兩行是控制scrollview
- android:focusable="true"
- android:focusableInTouchMode="true"
- 不自動的關鍵! !-->
-
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
-
- <ListView
- android:id="@+id/lv_gc"
- android:layout_marginTop="5dp"
- android:layout_width="match_parent"
- android:layout_height="20dp"
- android:background="#aaffffff"
- android:divider="#666"
- android:scrollbars="none|vertical" >
-
- </ListView>
-
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
如上面代碼,個人ScrollView中第一個內容是LinearLayout,下面有一個LinearLayout包裹着的ListView.ListView是長度可變的。
將LinearLayout中加入代碼:htm
- android:focusable="true"
- android:focusableInTouchMode="true"
問題便可解決,歡迎你們交流。