Firebase Data Desc Sorting in Android

前端 未结 15 2363
醉话见心
醉话见心 2020-11-22 07:51

I am storing data in Firebase storage.

Object Comment with attribute timestamp. When I push data from device to Firebase I\'m populating

15条回答
  •  無奈伤痛
    2020-11-22 08:14

    add a column namely timestamp with values (-1*System.currentTimeMillis()) and while fetching data use orderByChild("timestamp").limitToFirst(15) or orderByChild("timestamp").limitToLast(15) according to your requirement. it is smartway to get data in sorted manner, as firebase has no rule for descending order.

提交回复
热议问题