我有一个与我的 FB 数据库中的对象相对应的对象键列表。我想以一种有效的方式检索所有这些对象,但我不知道如何查询它们。
现在我正在使用这个代码。它只是一种递归方法,逐个检索对象,直到找到所有对象。它可能非常缓慢。
private void getNextPoll(){
pollRef = rootRef.child(getString(R.string.poll_ref)).child(myPollIds.get(polls.size()));
pollRef.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
Poll poll = dataSnapshot.getValue(Poll.class);
polls.add(poll);
System.out.println(poll);
//if this is the last poll, then sort the polls by date and display them
if(polls.size() == myPollIds.size()){
//Done
//sort
//display
recyclerView.setAdapter(new MyPollsListAdapter(getContext(), polls));
}else{
getNextPoll();
}
}
@Override
public void onCancelled(DatabaseError databaseError) {
Log.e(TAG, databaseError.getMessage());
}
});
}
我该怎么做呢?
提前致谢 :)