ListView始终在SwipeRefreshLayout中显示滚动条

时间:2014-12-02 19:24:36

标签: android listview

我知道这已经被无限时间问了,但是我已经尝试了所有的解决方案并且没有结果。

我希望垂直滚动条始终显示在屏幕上。

这是我的xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="vertical">

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_refresh_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ListView android:id="@+id/list_view"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:paddingRight="16dp"
              android:paddingLeft="16dp"
              android:background="#ffacb8ba"
              android:fadeScrollbars="false"
              android:scrollbarFadeDuration="0"
              android:scrollbarAlwaysDrawVerticalTrack="true"/>

    </android.support.v4.widget.SwipeRefreshLayout>

</LinearLayout>

在我的代码中,我也设置了

listView.setFastScrollEnabled(true);

我认为这个问题可能与listview在swiperefreshlayout中的事实有关,我不知道。

HELP !!!

1 个答案:

答案 0 :(得分:0)

在查看文档后想出来:http://developer.android.com/reference/android/widget/AbsListView.html#setFastScrollAlwaysVisible(boolean)

结果设置滚动条始终可见,与始终显示快速滚动分开:)