Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I try to use the FirebaseUI-Android lib to simply display a data set in a recycler-view.

Data are store in Firebase in a list, thanks to push() method.

When I get the data, I got the oldest data first, and my requirement is the youngest first. So I need a reverse order.

  1. Is there a way to do that with FirebaseUI itself?

  2. With Firebase Core, it seems the 2 only possible ways are (from Display posts in descending posted order) :

    • getting all the data, and revert them at runtime (in Force), thanks to @Kato snippet
    • setting a decreasing priority for every item push in the list at writing time. This require we know every (today and tomorrow) ordering usage at startup of data pull creation. This is often not the case. Is there any other (old or new) option to do this simple and main frame job ?
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
474 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...