How to clear/remove all items in page list adapter

前端 未结 4 1460
旧巷少年郎
旧巷少年郎 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:22

    submitting null clear the currently loaded page list

      productSearchResultItemAdapter.submitList(null)
    

提交回复
热议问题