向下滑动以刷新Material Design

时间:2014-11-07 13:39:14

标签: android android-5.0-lollipop material-design pull-to-refresh android-recyclerview

我一直在寻找新材料设计的实施,以便在RecyclerViews上刷新,其中加载圈从ActionBar下来,就像新的Gmail应用程序一样。 我还没有找到类似的东西,只有一些SwipeRefreshLayout + RecyclerView示例。 有谁知道怎么做?

1 个答案:

答案 0 :(得分:20)

您可以使用appcompat支持库中提供的“滑动刷新”视图:

compile 'com.android.support:appcompat-v7:21.0.0'

以下是与RecyclerView结合使用的方法

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:clipToPadding="false"
        android:layout_height="match_parent"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_horizontal_margin"
        android:paddingBottom="@dimen/activity_vertical_margin" />

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

希望我能帮忙!