Most of the articles I found online used setLimit function to load more items. But it is not an efficient way as we would be recalling the existing objects.
I'm using a RecyclerView with a custom adapter to load my list items. Once I receive the list of objects from Parse server, I group few items based on my algorithm and pass it to my Custom Adapter.
I got to know that ParseQueryAdapter is another way to implement pagination. Can someone suggest how I can use ParseQueryAdapter with my custom adapter?
Finally I solved it by using setSkip function.
Code: