I need a suggestion for Adapter with Firebase real time insert on collection. FirestoreRecyclerAdapter
loads all document if not limit is not set. I have seen some example for paging data with updating query but they have done it without FirestoreRecyclerAdapter
. Officials also suggest to reuse and update Query
range for pagination.
Anyway i can use FirestoreRecyclerAdapter
with updating query for pagination.
Does FirestoreRecyclerAdapter
support updating query? I think not.
Then should i use just simple RecyclerView.Adapter
like given example ?