我想從android中的Firebase中獲取所有子女名單。如何從Firebase獲取所有子女名單android
我已經實現了這個代碼,但它不工作。
mFirebaseRef = new Firebase(FIREBASE_URL);
mFirebaseRef.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
List<String> td = (ArrayList<String>) dataSnapshot.getValue();
//notifyDataSetChanged();
}
@Override
public void onCancelled(FirebaseError firebaseError) {
}
});
可能重複:http://stackoverflow.com/questions/27848313/firebase-retrieve-child-android下面 –
答案。但這部分是猜測,因爲「它不工作」的含義非常模糊,並且不包含您的數據片段。如果我的回答沒有解決你的問題:你會得到什麼錯誤?你的數據是什麼樣子的(複製/粘貼它的樣本,沒有截圖和描述)? –
試試這個:http://stackoverflow.com/questions/32886546/how-to-get-all-child-list-from-firebase-android/36600791#36600791 –