猿问

如何更改为我可以删除的 ValueEventListener?

我有一个 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);

但不工作。我哪里错了?


qq_花开花谢_0
浏览 85回答 1
1回答

DIEA

您已经在此处添加了一个侦听器questions.addValueEventListener(mQuestionsListener);,那么您需要声明一个新的侦听器ValueEventListener():ValueEventListener mQuestionsListener = 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) {                }            });
随时随地看视频慕课网APP

相关分类

Java
我要回答