Android SwipeToRefresh - Confilct с RecyclerView при проведении вниз

Итак, у меня есть фрагмент с 2 списками RecyclerView. Я хочу провести фрагмент, чтобы обновить эти списки, но когда я прокручиваю один из этих списков, чтобы увидеть скрытые элементы, SwipeToRefresh обновляет эти списки. Как это предотвратить?

Вот мой макет XML:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/main_fragment">

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

        <android.support.design.widget.CoordinatorLayout
            android:id="@+id/main_fragment_coordinator_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:weightSum="2">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical"
                    android:layout_weight="1">

                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_margin="4dp"
                        android:textSize="18sp"
                        android:textColor="@color/primary_dark"
                        android:text="Najpopularniejsze przepisy" />

                    <android.support.v7.widget.RecyclerView
                        android:id="@+id/top_recipes_recycler_view"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:scrollbars="vertical" />

                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical"
                    android:layout_weight="1">

                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_margin="4dp"
                        android:textSize="18sp"
                        android:textColor="@color/primary_dark"
                        android:text="Najnowsze przepisy" />

                    <android.support.v7.widget.RecyclerView
                        android:id="@+id/latest_recipes_recycler_view"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:scrollbars="vertical" />

                </LinearLayout>

            </LinearLayout>

        </android.support.design.widget.CoordinatorLayout>

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

</FrameLayout>

Есть идеи?

1 ответ

Вы можете использовать событие смахивания вниз в RecycleView, когда оно может прокрутиться вверх.

Просто настройте RecycleView и перехватите событие, когда вам нужно.

Другие вопросы по тегам