在PageKeyedDataSource中设置DataSource大小以获得占位符效果

时间:2019-01-02 10:06:27

标签: android android-layout android-recyclerview android-jetpack android-paging

我正在使用 Android体系结构组件中的分页库。我正在尝试通过服务器加载数据,而没有任何本地数据库。

我的DataSource类扩展了PageKeyedDataSource

下面是我的Paging.Config定制,

PagedList.Config pageConfig = (new PagedList.Config.Builder())
            .setPageSize(20)
            .setInitialLoadSizeHint(30)
            .setPrefetchDistance(5)
            .setEnablePlaceholders(true)
            .build();

我启用了占位符,这使我可以管理null PagedListAdapter类。我已经完成了下面的工作,

@Override
public void onBindViewHolder(@NonNull MyEventViewHolder holder, int position) {
    Article mArticle = getItem(position);

    if (mArticle != null) {
        holder.txtTitle.setText(mArticle.getTitle());
        holder.txtAuthor.setText(mArticle.getAuthor());
        holder.txtDesc.setText(mArticle.getDescription());
    } else {
        holder.txtTitle.setText("...");
        holder.txtAuthor.setText("......");
        holder.txtDesc.setText(".........");
    }
}

在下一次API调用之前,我无法在列表末尾看到占位符。

我的问题是,有没有一种方法可以在第一次调用API后指定列表的大小 ?由于我的API正在返回查询中预期的项目总数。如果不可能的话,我还能做些什么来查看列表中的占位符。

注意:由于我的API设置为基于页面响应,因此我无法切换到ItemKeyedDataSourcePositionalDataSource

1 个答案:

答案 0 :(得分:2)

为此,我认为您需要在内部进行loadInitial

callback.onResult(mArticles, 0, SIZE_OF_TOTAL_ITEMS, null, 2L);

loadBefore

callback.onResult(mArticles, params.key - 1);

loadAfter

callback.onResult(mArticles, params.key + 1);

在初始加载时必须知道SIZE_OF_TOTAL_ITEMS。