Recyclerview 在 API 上向上滑动刷新 android 21

Recyclerview swipe up to refresh in android on API 21

我想要 "swipe up to refresh content" 回收站视图中的功能(类似于 SwipeRefreshLayout)。

目前我有一个按钮,它在点击时刷新视图,我想通过向上滑动来做同样的事情。唯一的问题是 SwipeRefreshLayout 自 API 22 以来可用。

使用API 21可以做到吗?

使用android.support.v4.widget.SwipeRefreshLayout。 添加您的 build.gradle compile 'com.android.support:support-v4:x.x.x' 其中 x.x.x 是支持库的最新版本。

您可以使用支持库 v4.

中的 class android.support.v4.widget.SwipeRefreshLayout

加入你build.gradle的依赖:

compile 'com.android.support:support-core-ui:26.1.0'

这里你可以在官方文档中找到all details

您可以使用 android.support.v4.widget.SwipeRefreshLayout。虽然我发现支持版本有问题然后我不得不像这样修改 SwipeRefreshLayout

import android.app.Activity;
import android.content.Context;
import android.support.design.widget.AppBarLayout;
import android.support.v4.widget.SwipeRefreshLayout;
import android.util.AttributeSet;

public class CustomSwipeRefreshLayout extends SwipeRefreshLayout implements AppBarLayout.OnOffsetChangedListener {
    private AppBarLayout appBarLayout;

    public CustomSwipeRefreshLayout(Context context) {
        super(context);
    }

    public CustomSwipeRefreshLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onAttachedToWindow() {
        super.onAttachedToWindow();
        if (getContext() instanceof Activity) {
            appBarLayout = (AppBarLayout) ((Activity) getContext()).findViewById(R.id.appbar);
            if (appBarLayout != null)
                appBarLayout.addOnOffsetChangedListener(this);
        }
    }

    @Override
    protected void onDetachedFromWindow() {
        if (appBarLayout != null) {
            appBarLayout.removeOnOffsetChangedListener(this);
            appBarLayout = null;
        }
        super.onDetachedFromWindow();
    }

    @Override
    public void onOffsetChanged(AppBarLayout appBarLayout, int i) {
        this.setEnabled(i == 0);
    }
}

现在像这样实现自定义 SwipeRefreshLayout

<?xml version="1.0" encoding="utf-8"?>
<your.package.name.CustomView.CustomSwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/swipe_refresh_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/white">


    <!-- Your RecyclerView -->

</your.package.name.CustomView.CustomSwipeRefreshLayout>