我创建了一个应用程序,它从互联网下载了一些数据并使用 recyclerView 将它们显示在列表中。所以我添加了 SwipeRefreshLayout 以便当用户在页面的开头时他可以从顶部拉动刷新(如 Facebook 应用程序)。当我向下滚动并再次尝试向上滚动时,我的应用程序会显示 SwipeRefreshLayout 并刷新我的页面。

我也在互联网上搜索,但无法得到正确的答案。

我尝试了 this 解决方案,但它不再起作用(因为我正在使用 recyclerView)。

这是我的应用程序的一些代码,以便更好地理解...

Activity 主

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

主 Activity .java
//.....
public SwipeRefreshLayout mSwipeRefreshLayout;

protected void onCreate(Bundle savedInstanceState) {
//....
mSwipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipeToRefresh);
    mSwipeRefreshLayout.setOnRefreshListener(this);
//......
}

//.......

@Override
public void onRefresh() {
    Api.getBlog(mBlogListAdapter);
}

接口(interface)响应
 //.......
 @Override
public void onResponse(Call<AllBlog> call, Response<AllBlog> response) {
    //.......
    mActivity.mSwipeRefreshLayout.setRefreshing(false);
}

在我的适配器中
//........
public class BlogListViewHolder extends RecyclerView.ViewHolder implements View.OnScrollChangeListener{
    public ImageView mBlogImage;
    public TextView mBlogTitle;
    public TextView mBlogAuthor;
    public BlogListViewHolder(View itemView) {
        super(itemView);
        mBlogImage = (ImageView) itemView.findViewById(R.id.blogPhoto);
        mBlogTitle = (TextView) itemView.findViewById(R.id.blogTitle);
        mBlogAuthor = (TextView) itemView.findViewById(R.id.blogAuthor);
    }
}

我也尝试实现 View.OnScrollChangeListener 但它也不起作用。
public class BlogListViewHolder extends RecyclerView.ViewHolder implements View.OnScrollChangeListener{
    public ImageView mBlogImage;
    public TextView mBlogTitle;
    public TextView mBlogAuthor;
    public BlogListViewHolder(View itemView) {
        super(itemView);
        mBlogImage = (ImageView) itemView.findViewById(R.id.blogPhoto);
        mBlogTitle = (TextView) itemView.findViewById(R.id.blogTitle);
        mBlogAuthor = (TextView) itemView.findViewById(R.id.blogAuthor);

        itemView.setOnScrollChangeListener(this);
    }

    @Override
    public void onScrollChange(View v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {
        if (v.getVerticalScrollbarPosition() == 0) {
            mActivity.mSwipeRefreshLayout.setEnabled(true);
        } else {
            mActivity.mSwipeRefreshLayout.setEnabled(false);
        }
    }
}

最佳答案

我认为您已经将 SwipeRefreshLayout 实现到整个布局本身。
这不是实现 SwipeRefreshLayout 的正确方法。您应该将 SwipeRefreshLayout 包装到您的 RecyclerView,而不是整个布局。

像下面这样:

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

关于android - 当我向上滚动 SwipeRefreshLayout 刷新我的应用程序时,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36281497/

10-10 23:55