How to clear/remove all items in page list adapter

前端 未结 4 1441
旧巷少年郎
旧巷少年郎 2021-02-10 11:54

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

4条回答
  •  庸人自扰
    2021-02-10 12:32

    Before invalidate, clear your list data item. Like we did in simple way:

    list.clear();
    adapter.notifyDataSetChanged();
    

提交回复
热议问题