我正在尝试使用SwipeRefresh和RecyclerView实现列表,但是,使用SwipeRefreshLayout
会阻止滚动列表。我的布局xml看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh_contracts"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!--<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">-->
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/list_contracts"/>
<!--</android.support.v4.widget.NestedScrollView>-->
</android.support.v4.widget.SwipeRefreshLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/btn_show_filters"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@drawable/ic_filter_list_black_24dp"
android:tint="@android:color/white"/>
</android.support.design.widget.CoordinatorLayout>
从注释掉的部分可以看到,我也尝试过使用NestedScrollView,但这也不起作用。
在随附的Java源文件中,我仅为recyclerview设置布局管理器和适配器,并为滑动刷新事件设置事件监听器。
谢谢。
答案 0 :(得分:0)
尝试一下:
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh_contracts"
android:layout_width="wrap_content"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/list_contracts"/>
</android.support.v4.widget.SwipeRefreshLayout>
更改高度和宽度:)