FirebaseRecyclerAdapter不起作用

时间:2018-07-31 12:12:54

标签: android firebase firebase-realtime-database firebase-authentication firebaseui

我正在尝试在我的聊天应用程序中使用FirebaseRecyclerAdapter,但是它没有显示任何内容。

有人可以帮忙吗?

这是我的代码:https://gist.github.com/omermujtaba/0f5dfdf0e021be87b875e6ac6b30b403

This is my db structure

2 个答案:

答案 0 :(得分:0)

尝试在onCreate函数中设置适配器,或尝试在某处使用它:

recyclerView.notifyDataSetChanged();

答案 1 :(得分:0)

正如我在上面的评论中作为示例提供给我的帖子的答案一样,区别在于您需要将适配器的创建移至onCreate()方法内,而不是将适配器保留在onStart()方法。在最后一个中,您应该开始聆听更改。