0

当我在 PagedList 上设置 initialKey 时,会调用 PageKeyedDataSource 中的哪个方法? PagedList<Employee> pagedList = new PagedList.Builder<>(dataSource, config) .setMainThreadExecutor(new MainThreadExecutor()) .setBackgroundThreadExecutor(Executors.newSingleThreadExecutor()) .setInitialKey(50) .build();

4

1 回答 1

0

.setInitialKey 不影响 PageKeyedDataSource。即使您传递值 10000,PageKeyedDataSource 也会调用 loadInitial 方法。

于 2018-09-24T12:54:55.933 回答