我有一個ListView
1000多個項目和一個滾動條。在不使用滾動條的情況下滾動時,滾動條不會平滑滾動。相反,它最初會朝着你期望的方向前進,然後向後跳。滾動時,它向後跳幾次,而不是順利滾動列表。在我的ListView
的XML佈局中,我已指定android:smoothScrollbar="false"
作爲解決此問題的嘗試。 documentation。但是,這個問題仍然存在。我所有的物品都是一樣的高度。我怎樣才能讓我的滾動條滾動順暢?Android列表中的滾動條行爲不穩定
這裏是我的XML
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp">
<ListView
android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fastScrollEnabled="true"/>
<TextView
android:id="@id/android:empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/no_songs_found"
android:textColor="@color/asbestos"
android:textSize="24sp"
android:gravity="center"/>
</FrameLayout>
您是否重新啓動您的手機 – ImGeorge
您是否看過我的xml文件,而不是使用滾動視圖來包裝您的佈局 – ImGeorge