我需要将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++;
}
}