1

I have data that was insert PostKey and Rating by cloud function. Following this picture newfeed, post

and I use FirebaseIndexRecyclerAdapter to get data

FirebaseIndexRecyclerAdapter<Post, FeedFragment.PostViewHolder> firebaseIndexRecyclerAdapter = new FirebaseIndexRecyclerAdapter<Post, FeedFragment.PostViewHolder>(
            Post.class,
            R.layout.post_row,
            FeedFragment.PostViewHolder.class,
            FirebaseRef.mNewfeedRef.child(UID),
            FirebaseRef.mPostRef
    ) {

Solution that I was thinks is

  1. First one is orderByValue() and load StartAt(0) to EndAt(5) when scrolled to bottom it called StartAt(0) to EndAt(10) and so on but each time will load old data that could wasted traffic.

  2. Second one is create new reference suppose is "newfeed-post" that have only top 5 items ordered by rating that get from "newfeed" and when I scroll down to load more I request to cloud function to let cloud function insert more 5 items from "newfeed" to "newfeed-post" that lower rating (eg. position 6-10).

Please help and let me know how to do this. Thanks :D

AL.
  • 36,815
  • 10
  • 142
  • 281
JustKhit
  • 407
  • 3
  • 9

1 Answers1

1

Pagination is not supported by FirebaseUI-Android components. They currently require you to provide a single query that yields all the results to display. There is no way to progressively supply more queries as a list is scrolled. Also see the discussion in this issue on the Github repo for FirebaseUI-Android.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
  • Thanks for answered, I found library https://github.com/marcorei/Infinite-Fire/ Can i use this instead of single query. – JustKhit Jun 13 '17 at 05:52
  • I've just seen that for the first time, so I don't know if it works. But you can certainly give it a try. – Doug Stevenson Jun 13 '17 at 20:06
  • Thanks @Doug Stevenson Maybe i should try to singleValueListener get data for insert to RecyclerView manually without FirebaseUI – JustKhit Jun 14 '17 at 07:11