我在activity
的fragment
中有listview
。所有基本功能都運行良好。但我最近觀察到的奇怪行爲。
滾動速度非常快,只要listview
到達任一端,它就會自動開始向相反方向滾動。在滾動緩慢或滾動快速滾動旋鈕時,不會看到此行爲。
沒有錯誤或異常,所以我無法找出這種行爲的原因。Listview在到達結尾後反向滾動?
任何幫助將非常感激。
這裏是我的listview
的xml
定義:
<ListView
android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:fastScrollEnabled="true"
android:fadeScrollbars="true"
android:dividerHeight="0dp"
android:divider="@null" >
</ListView>
在代碼中的implementaion是很基本的,所以我不會在這裏張貼,但還是老樣子,如果它需要的話,我會後這一點。
嘗試更改列表視圖的高度以匹配父級,並告訴問題是否仍然存在 –