Firestore - после добавления .whereEqualTo данные не обновляются в реальном времени - PullRequest
0 голосов
/ 06 декабря 2018

После добавления метода .whereEqualsЭти данные не обновляются в режиме реального времени.Мне нужно переключиться на другой экран и вернуться, чтобы получить обновление.У кого-нибудь есть идеи, почему это происходит?

Вот код:

        Query query = dailyGoalsRef.whereEqualTo("isNotToDisplay", false).orderBy("date", Query.Direction.ASCENDING);
    FirestoreRecyclerOptions<DailyGoalsModel> firestoreRecyclerOptions = new FirestoreRecyclerOptions.Builder<DailyGoalsModel>()
            .setQuery(query, DailyGoalsModel.class)
            .build();

    firestoreRecyclerAdapter =
            new FirestoreRecyclerAdapter<DailyGoalsModel, DailyGoalsHolder>(firestoreRecyclerOptions) {
                @Override
                protected void onBindViewHolder(@NonNull DailyGoalsHolder holder, int position, @NonNull DailyGoalsModel model) {
                    String fragmentName = "dailyGoals";
                    holder.setGoalsList(context, userEmail, model, fragmentName);
                }

                @NonNull
                @Override
                public DailyGoalsHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
                    View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.daily_goals_list, parent, false);
                    return new DailyGoalsHolder(view);
                }

                @Override
                public void onDataChanged() {
                    if (progressBar != null) {
                        progressBar.setVisibility(View.GONE);
                    }
                    if (getItemCount() == 0) {
                        recyclerView.setVisibility((View.GONE));
                        emptyView.setVisibility((View.VISIBLE));
                    } else {
                        recyclerView.setVisibility(View.VISIBLE);
                        emptyView.setVisibility(View.GONE);
                    }
                }

                @Override
                public int getItemCount() {
                    return super.getItemCount();
                }
            };
    recyclerView.setAdapter(firestoreRecyclerAdapter);
    return layout;

Firestore: enter image description here

изменение значения "isNotToDispaly "

if ((date.getTime()) < (todayDate.getTime() - 2*24*60*60*1000)) {
            rootRef.collection("goalsData").document(userEmail).collection(fragmentName).document(goalsId).update("isNotToDisplay", true);
        }

находится в

public void setGoalsList(final Context context, String userEmail, DailyGoalsModel goalsModel, String fragmentName)

1 Ответ

0 голосов
/ 07 декабря 2018

Я решил эту проблему.Это было необычно, потому что речь шла об отсутствии добавления индекса в платформе Firebase.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...