RecyclerView SwipeRefreshLayout прокрутка не работает
Я пытаюсь реализовать список с 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-файле я только устанавливаю менеджер раскладки и адаптер для вьюблера, а также прослушиватель событий для действия "свайп для обновления".
Заранее спасибо.
1 ответ
Попробуй это:
<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>
Изменить высоту и ширину:)