Android: CoordinatorLayout and SwipeRefreshLayout Android: CoordinatorLayout and SwipeRefreshLayout android android

Android: CoordinatorLayout and SwipeRefreshLayout


Set the scroll behavior to the SwipeRefreshLayout not the RecyclerView.

    <android.support.v4.widget.SwipeRefreshLayout        android:id="@+id/swipe_container"        android:layout_width="match_parent"        android:layout_height="match_parent"        app:layout_behavior="@string/appbar_scrolling_view_behavior">        <android.support.v7.widget.RecyclerView            android:id="@+id/cardList"            android:layout_width="match_parent"            android:layout_height="match_parent"            android:scrollbars="vertical" />    </android.support.v4.widget.SwipeRefreshLayout>