我有一个 Firebase valueEvent 侦听器:
questions.orderByChild("CategoryID").equalTo(categoryID)
.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
for (DataSnapshot postSnapshot : dataSnapshot.getChildren()) {
Question ques = postSnapshot.getValue(Question.class);
Common.questionList.add(ques);
}
//Random List
Collections.shuffle(Common.questionList);
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
}
});
作为拥有可以附加和删除的对象的最佳实践,我想将代码更改为 ValueEventListener 对象。我做了以下事情:
mQuestionsListener = questions.orderByChild("CategoryID").equalTo(categoryID)
.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
for (DataSnapshot postSnapshot : dataSnapshot.getChildren()) {
Question ques = postSnapshot.getValue(Question.class);
Common.questionList.add(ques);
}
//Random List
Collections.shuffle(Common.questionList);
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
}
});
questions.addValueEventListener(mQuestionsListener);
但不工作。我哪里错了?
DIEA
相关分类