使用FirestoreRecyclerAdapter(Android)进行Firestore分页

时间:2018-04-05 19:53:18

标签: android firebase android-recyclerview google-cloud-firestore infinite-scroll

我已在https://firebase.google.com/docs/firestore/query-data/query-cursors

审核了文档

我想让firestore分页与FirestoreRecyclerAdapter一起使用。

有没有人为此用例提供示例工作代码?我有一个列表,该列表可能很长。我想设置一个限制并遵循策略,通过将查询游标与limit()方法相结合来对查询进行分页。

到目前为止,这是我在ListActivity中的内容:

     // Construct query for first 25 teachers, ordered by firstName
    firstQuery = FirebaseFirestore.getInstance()
            .collection("School").document(user.getUid())
            .collection("teachers")
            .orderBy("firstName")
            .limit(25);


    FirestoreRecyclerOptions<Teacher> options = new FirestoreRecyclerOptions.Builder<Teacher>()
            .setQuery(firstQuery, Teacher.class)
            .build();

    adapter = new FirestoreRecyclerAdapter<Teacher, TeacherHolder>(options) {
        @Override
        public void onBindViewHolder(final TeacherHolder holder, final int position, Teacher teacherItem) {
            // Bind the Teacher object to the TeacherHolder
            //progressBar.setVisibility(View.GONE);
            ....



        }

要实施firestore docs提供的策略,下一步该怎么做呢。

// Construct query for first 25 cities, ordered by population
Query first = db.collection("cities")
    .orderBy("population")
    .limit(25);

first.get()
.addOnSuccessListener(new OnSuccessListener<QuerySnapshot>() {
    @Override
    public void onSuccess(QuerySnapshot documentSnapshots) {
        // ...

        // Get the last visible document
        DocumentSnapshot lastVisible = documentSnapshots.getDocuments()
                .get(documentSnapshots.size() -1);

        // Construct a new query starting at this document,
        // get the next 25 cities.
        Query next = db.collection("cities")
                .orderBy("population")
                .startAfter(lastVisible)
                .limit(25);

        // Use the query for pagination
        // ...
    }
});

在使用FirestoreRecyclerAdapter时,如何将firestore提供的上述建议连接到我的应用程序中。我是否在上面的适配器中添加了scrollListener?并听取滚动事件,重新运行查询。将所有这些联系在一起的示例代码将帮助我清除完成所有操作所需的布线。

我确实看过围绕这个主题的其他一些聊天,我找到的最接近的是https://github.com/Malik333/RecyclerviewFirestorePagination,但是这并没有使用我想要使用的FirestoreRecyclerAdapter。

讨论回收站适配器的Firestore文档 https://github.com/firebase/FirebaseUI-Android/tree/master/firestore#using-the-firestorerecycleradapter

(但没有太多关于如何将其与分页联系起来的信息)。

我想也许我需要做一些类似于this

的事情

但寻找与FirestoreRecyclerAdapter代码的集成。

我正考虑从

开始
myRecyclerView.setOnScrollChangeListener(new EndlessScrollListener() {
            @Override
            public boolean onLoadMore(int page, int totalItemsCount) {
                // Triggered only when new data needs to be appended to the list
                // Add whatever code is needed to append new items to your AdapterView
                //loadNextDataFromApi(page);
                // or loadNextDataFromApi(totalItemsCount);
                return true; // ONLY if more data is actually being loaded; false otherwise.
            }
        });

并按照本教程中列出的步骤操作 https://github.com/codepath/android_guides/wiki/Endless-Scrolling-with-AdapterViews-and-RecyclerView

1 个答案:

答案 0 :(得分:-1)

您可以这样做。非常简单,无需使用FirestoreRecyclerAdapter。您只需要使用FirestorePagingAdapter。它还支持firestoreUi。

PagedList.Config config = new PagedList.Config.Builder()
    .setEnablePlaceholders(false)
    .setPrefetchDistance(10)
    .setPageSize(20)
    .build();

通过使用此代码,您可以定义首次加载时要加载的项目数量,以及从DataSource一次加载的项目数量。而已。  您可以了解更多from here

FirestoreRecyclerAdapter和FirestorePagingAdapter之间有细微差别