airbnb / epoxy

Epoxy is an Android library for building complex screens in a RecyclerView
https://goo.gl/eIK82p
Apache License 2.0
8.46k stars 730 forks source link

Is there any other way to achieve loading more withou paging library #1306

Open Elip-kio opened 1 year ago

viroth-ty commented 1 year ago

1 - observe recycler view scroll position whether at bottom or not. You can find example here Example 2 - Declare global variable called var page: Int = 0. Set new value to pager when recycler view hits bottom and finally fetch more data by paging. That's one of other solutions.