Add Items to top of recyclerview

后端 未结 9 2201
臣服心动
臣服心动 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:36

    You can reverse your whole list using Collections :

    Collections.reverse(historyitems);
    

    Try using adapter :

    adapter.insert(yourItem, 0);
    

    Try using List :

    list.add(0,listItem);
    

提交回复
热议问题