Add Items to top of recyclerview

后端 未结 9 2222
臣服心动
臣服心动 2021-01-04 04:56

I have a Recyclerview in my activity. when I pull down it will load new items to recycle view. Now I need to implement pull to refresh the concept to my recyclerview. I have

9条回答
  •  甜味超标
    2021-01-04 05:19

    I also need to add items to the front of recyclerview(and to bottom), but i need to keep scroll focused at the previous top item.

    So i'm scrolling recyclerview to previous top item:

    mAdapter.pushFront(items);
    mAdapter.notifyItemRangeInserted(0, items.size());
    recyclerView.scrollToPosition(items.size() - 1);
    

    Is there a better solution?

提交回复
热议问题