Firebase Data Desc Sorting in Android

前端 未结 15 2366
醉话见心
醉话见心 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:30

    The @Monet_z_Polski approach, based on

    @Override
    public T getItem(int position) {
      return super.getItem(getCount() - (position + 1));
    }
    

    does have a weird effect on not update FirebaseRecyclerView automatically (PopulateViewHolder is not triggered in realtime changes). So, the best option is use a negative key to index the data.

提交回复
热议问题