PageKeyedDataSource с setInitialKey
Какой метод в PageKeyedDataSource будет вызываться, когда я устанавливаю initialKey для PagedList?PagedList<Employee> pagedList = new PagedList.Builder<>(dataSource, config)
.setMainThreadExecutor(new MainThreadExecutor())
.setBackgroundThreadExecutor(Executors.newSingleThreadExecutor())
.setInitialKey(50)
.build();
1 ответ
Решение
.setInitialKey не влияет на PageKeyedDataSource. PageKeyedDataSource будет вызывать метод loadInitial, даже если вы передадите значение 10000.