RecyclerRefresh icon indicating copy to clipboard operation
RecyclerRefresh copied to clipboard

A refresh demo realized by SwipeRefreshLayout and RecyclerView with 'Jianshu' style.

Results 3 RecyclerRefresh issues
Sort by recently updated
recently updated
newest added

当数据较少(超出一屏幕),先刷新,同时去上拉 发现还是会看到底部的bottom.一下代码好像没有起到作用 if (swipeRefresh.isRefreshing()) { adapter.notifyItemRemoved(verticalAdapter.getItemCount()); return; }

例如i < 2 ``` /** * 获取测试数据 */ private void getData() { for (int i = 0; i < 2; i++) { Map map = new HashMap(); data.add(map); } adapter.notifyDataSetChanged();...