How to implement Infinite Scrolling with RecyclerView?

前端 未结 5 1855
一生所求
一生所求 2020-12-20 00:03

I have a recycler and inside of it there are cardviews where I fetch information from a REST service, I\'m trying to implement an endless scroll, It\'s supposed that user wi

5条回答
  •  轮回少年
    2020-12-20 00:32

    You can add a scrollListener to your recyclerview.

    Check a similar answer here

    And the main SO post here

    Where, the scrollListener will check where exactly are you in the recyclerview and based on some logic (which you can flexibly write) make a second call!

提交回复
热议问题