我正在尝试从Firebase获取String列表,并且只检索完所有数据后,我将更新我的UI。目前我在片段类中使用以下代码来实现此目的。
taskList = new ArrayList<>();
mDatabase.child("users").child(mUserId).child("items").orderByChild("id").addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot){
for(DataSnapshot childSnapshot : dataSnapshot.getChildren() ){
taskList.add(new Pair<>((long) childSnapshot.child("id").getValue(),(String) childSnapshot.child("title").getValue()));
}
//update UI
setupListRecyclerView();
}
@Override
public void onCancelled(DatabaseError firebaseError){
throw firebaseError.toException();
}
});
如果置于valueEventListener之外,则setupListRecyclerView可以正常工作,但如果置于其中,则会出现"Attempt to invoke virtual method 'java.lang.Object android.content.Context.getSystemService(java.lang.String)' on a null object reference"
错误。但是,如果我把它放在听众之外,它会在检索Firebase的数据之前更新UI,所以我在这里丢失了。
以下是setupListRecyclerView的样子:
private void setupListRecyclerView() {
mDragListView.setLayoutManager(new LinearLayoutManager(getContext()));
ItemAdapter listAdapter = new ItemAdapter(taskList, R.layout.list_item, R.id.image, false);
mDragListView.setAdapter(listAdapter, true);
mDragListView.setCanDragHorizontally(false);
mDragListView.setCustomDragItem(new MyDragItem(getContext(), R.layout.list_item));
}
private static class MyDragItem extends DragItem {
MyDragItem(Context context, int layoutId) {
super(context, layoutId);
}
@Override
public void onBindDragView(View clickedView, View dragView) {
CharSequence text = ((TextView) clickedView.findViewById(R.id.text)).getText();
((TextView) dragView.findViewById(R.id.text)).setText(text);
dragView.findViewById(R.id.item_layout).setBackgroundColor(dragView.getResources().getColor(R.color.list_item_background));
}
}
答案 0 :(得分:1)
如果你把它作为全局变量声明ItemAdapter listAdapter
并将listAdapter.notifyDataSetChanged()
添加到onDataChange()
方法,或者如果你放入内部尝试
mDragListView.setLayoutManager(new LinearLayoutManager(getActivity()));