解決Android中,禁止ScrollView內的控件改變之後自動滾動 - 轉
阿新 • • 發佈:2017-09-02
add tag mark 改變 html linear 一個 ide orien
問題:
最近在寫一個程序界面,有一個scrollVIew,其中有一段內容是需要在線加載的。
當內容加載完成後,ScrollView中內容的長度會發生改變,這時ScrollView會自動下滾,如下圖所示:
滾動的那一下體驗特別不好,所以要防止這種情況。即不論Scrollview中內容如何,都要保持在最上。
解決辦法:
先簡單寫一下我的xml文件的結構:
[html] view plain copy
- <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中加入代碼:
[html] view plain copy
- android:focusable="true"
- android:focusableInTouchMode="true"
問題即可解決,歡迎大家交流。
轉載請註明來自:http://blog.csdn.net/icyfox_bupt/article/details/15026299
解決Android中,禁止ScrollView內的控件改變之後自動滾動 - 轉