I\'m using the android paging library to show search result items, is there any way I can clear/remove all the loaded result items, Calling Invalidate on live Paged List refresh
Before invalidate, clear your list data item. Like we did in simple way:
list.clear(); adapter.notifyDataSetChanged();