How to paginate Firestore with Android?

前端 未结 3 1986
野的像风
野的像风 2020-11-22 00:14

I read Firestore documentation and all articles on internet(stackoverflow) about Firestore pagination but no luck. I tried to implement the exact code in docs, but nothing h

3条回答
  •  迷失自我
    2020-11-22 00:51

    FirebaseUI-Android also recently came out with a Firestore Paginator.

    I have used it in my code, and it works great - just keep in mind that it operates using .get() instead of .addSnapshotListener(), so the recycler is not in realtime.

    See the docs here:

    https://github.com/firebase/FirebaseUI-Android/tree/master/firestore#using-the-firestorepagingadapter

提交回复
热议问题