编程语言
首页 > 编程语言> > java-RecyclerView拉起刷新

java-RecyclerView拉起刷新

作者:互联网

如何检测“回收站”视图何时位于列表的底部,而不是仅位于屏幕的底部,而是位于RecyclerView的最后一项.现在我正在使用SwipeRefreshLayout,但是我无法将其设置为上拉.

解决方法:

在onScrolled()回调中使用此代码.

int lastVisibleItem = ((LinearLayoutManager) layoutManager).findLastVisibleItemPosition();
int totalItemCount = layoutManager.getItemCount();

if (lastVisibleItem >= totalItemCount - 10) {
   loadMore();
}

标签:android-recyclerview,java,android
来源: https://codeday.me/bug/20191121/2050245.html