gpt4 book ai didi

java - FireBase onDataChange() 不起作用

转载 作者:行者123 更新时间:2023-12-01 16:47:31 25 4
gpt4 key购买 nike

尽管接收快照并在 onDataChange() 函数中将数据添加到 ArrayList 中,但该函数没有返回任何数据,但最终它返回 大小为 0 的 ArrayList

List<ProductEntity> feed_data() {
final List<ProductEntity> feededProducts = new ArrayList<>();

progressDialog = new ProgressDialog(this);
progressDialog.setMessage("Please wait...");
progressDialog.show();
mDatabase = FirebaseDatabase.getInstance().getReference("/products");

//adding an event listener to fetch values
mDatabase.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
//dismissing the progress dialog
progressDialog.dismiss();

//iterating through all the values in database
for (DataSnapshot postSnapshot : snapshot.getChildren()) {
ProductEntity upload = postSnapshot.getValue(ProductEntity.class);
Log.d("error", "onDataChange: " + upload.about);
feededProducts.add(upload);
}
}

@Override
public void onCancelled(DatabaseError databaseError) {
Log.d("Error", "onCancelled: " + databaseError.getMessage());

NestedScrollView root_layout = findViewById(R.id.category_root_layout) ;
Snackbar.make(root_layout, "Internal Error!!", Snackbar.LENGTH_SHORT).show();
}
});
return feededProducts ;
}

最佳答案

onDataChange(DataSnapshot snapshot) 被异步调用。当我们从 Firebase 获取数据时,将会调用该函数。

因此,您的返回 feededProducts 在 onDataChange(DataSnapshot snapshot) 方法之前被调用,因此您每次都会返回空列表。

您必须在 onDataChange(DataSnapshot snapshot) 内的适配器上调用 notificationdatasetchanged

关于java - FireBase onDataChange() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47219128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com