I use FirestoreRecyclerAdapter
with query. I show the loading till it's not getting into onBindViewHolder()
. If it comes to onBindViewHolder
then I close the dialog.
But in my scenario there is no data into query and its not get into onBindViewHolder
so I do not found anyway to close it. Here is my code. Please help.
Query query = GlobalApplication.applianceRef.whereEqualTo("applianceType", appType);
FirestoreRecyclerOptions < RoomAppliance > response = new FirestoreRecyclerOptions.Builder < RoomAppliance > ()
.setQuery(query, RoomAppliance.class)
.build();
if (dialog != null) {
dialog.show();
}
adapter = new FirestoreRecyclerAdapter < RoomAppliance, ApplianceActivity.ViewHolder > (response) {
@Override
public void onBindViewHolder(final ApplianceActivity.ViewHolder holder, final int position, final RoomAppliance model) {
dialog.dismiss();
}
@Override
public ApplianceActivity.ViewHolder onCreateViewHolder(ViewGroup group, int i) {
View view = null;
try {
view = LayoutInflater.from(group.getContext())
.inflate(R.layout.user_appliance, group, false);
} catch (Exception e) {
Log.e("error", e.getMessage());
}
return new ApplianceActivity.ViewHolder(view);
}
};
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…