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
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);