epoxy
epoxy copied to clipboard
Is there any other way to achieve loading more withou paging library
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.