无法从Firebase实时数据库读取数据

时间:2019-11-06 13:33:22

标签: android firebase firebase-realtime-database

我需要将FirebaseDatabase中的数据显示到我的Android测验应用中。当我启动应用程序时,它没有显示任何错误,但是没有显示来自database的数据。 database structure

private void updateQuestion() {
    mQuestionRef = new Firebase("https://maths-quiz-3104f.firebaseio.com/0/biq");
    mQuestionRef.addValueEventListener(new com.firebase.client.ValueEventListener() {
        @Override
        public void onDataChange(com.firebase.client.DataSnapshot dataSnapshot) {
            String question = dataSnapshot.getValue(String.class);
            mQuestion.setText(question);


        }

        @Override
        public void onCancelled(FirebaseError firebaseError) {

        }
    });
            if(mQuestionNumber > 10){

                quitFunction();

            }
            else {
                mQuestionNumber++;
            }
}

0 个答案:

没有答案