根据错误信息提示,可以看出 AddSnapshotListener 函数所传递的参数与该函数的参数定义不匹配,需要检查函数参数的数据类型和数量是否正确。例如,如果 AddSnapshotListener 函数需要传入一个 QuerySnapshot 类型的参数,则调用该函数时应该传入一个 QuerySnapshot 类型的参数。以下是一个简单的样例代码:
DocumentReference docRef = db.collection("myCollection").document("myDocument");
docRef.addSnapshotListener(new EventListener() {
@Override
public void onEvent(DocumentSnapshot snapshot, FirebaseFirestoreException e) {
if (e != null) {
Log.w(TAG, "Listen failed.", e);
return;
}
if (snapshot != null && snapshot.exists()) {
Log.d(TAG, "Current data: " + snapshot.getData());
} else {
Log.d(TAG, "Current data: null");
}
}
});
在上面的代码中, addSnapshotListener 函数需要传递一个 EventListener