Tag: 安卓

Firebase列表适配器构造函数错误

我创建了一个显示聊天消息的函数,我按照教程,我也查看了Firebase列表适配器的文档,但无论我做什么,我都会收到此错误: Error:(98, 19) error: constructor FirebaseListAdapter in class FirebaseListAdapter cannot be applied to given types; required: FirebaseListOptions found: Chat,Class,int,DatabaseReference reason: actual and formal argument lists differ in length where T is a type-variable: T extends Object declared in class FirebaseListAdapter 这是我的代码: private void displayChatMessage() { ListView listOfMessage = (ListView)findViewById(R.id.list_of_messages); FirebaseRecyclerOptions options = new FirebaseRecyclerOptions.Builder() .setQuery(query, […]

如何使用Android在RecyclerView中显示Firestore中的数据?

使用Android在RecyclerView显示现有Firestore数据库中数据的最佳方法是什么? 这不作为答案中的完整解释,因此我添加了此Q&A样式,以便可以在评论中链接。