将RecyclerView与“刷卡刷新布局”指示器一起移动(如Instagram拉动刷新)

时间:2018-05-01 14:02:04

标签: listview android-recyclerview pull-to-refresh swiperefreshlayout

我想将Recyclerview与Swipe Refresh Layout指示器一起移动(不要将指示器放在Recyclerview上方,但Recyclerview应该出现在刷卡刷新指示器的下方)。

我在SwipeRefreshLayout中实现了recyclerView。相应的XML如下所示。

<android.support.v4.widget.SwipeRefreshLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:id="@+id/swipe_refresh_news">

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

目前滑动如下所示:See this picture

我想要这样的东西,但我不想使用任何第三方库:
See this pic

0 个答案:

没有答案