Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
311 views
in Technique[技术] by (71.8m points)

android - If there is data in query or Path it show data in FirestoreRecyclerAdapter. but when there is no data at that path

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...