How to implement endless list with RecyclerView?

前端 未结 30 3089
无人及你
无人及你 2020-11-22 02:22

I would like to change ListView to RecyclerView. I want to use the onScroll of the OnScrollListener in RecyclerView to determine if a

30条回答
  •  Happy的楠姐
    2020-11-22 03:09

    I have a pretty detailed example of how to paginate with a RecyclerView. At a high level, I have a set PAGE_SIZE , lets say 30. So I request 30 items and if I get 30 back then I request the next page. If I get less than 30 items I flag a variable to indicate that the last page has been reached and then I stop requesting for more pages. Check it out and let me know what you think.

    https://medium.com/@etiennelawlor/pagination-with-recyclerview-1cb7e66a502b

提交回复
热议问题