Does FirebaseRecyclerAdapter load all children at a reference at once, or only upon scrolling. Suppose we have a ref containing thousands of chat messages, are they all going to be fetched from database at once??
Asked
Active
Viewed 170 times
1 Answers
0
The FirebaseRecyclerAdapter
loads whatever child nodes are matches by the DatabaseReference
or Query
you pass into it. It does not implement pagination or another form of load-on-demand.

Frank van Puffelen
- 565,676
- 79
- 828
- 807
-
Thanks for answering. 'pagination' is the keyword I was looking for. – EHH Apr 25 '17 at 14:09