我正在使用 PagingLibrary 3.0 实现滑动以刷新。
我的存储库返回一个流,PagingData<Item>
然后LiveData
由视图模型公开。
存储库
override fun getItems(): Flow<PagingData<Item>> {
val pagingConfig = PagingConfig(pageSize = 20, enablePlaceholders = false)
val pager = Pager(pagingConfig) {
IndexedPagingSource(remoteDataSource)
}
return pager.flow
}
视图模型
val itemsStream: LiveData<PagingData<Item>> = repository.getItems()
.asLiveData()
.cachedIn(viewModelScope)
分段
private fun FragmentItemListBinding.bindView() {
list.adapter = adapter
list.layoutManager = LinearLayoutManager(context)
swipeRefresh.setOnRefreshListener { onRefresh() }
adapter.loadStateFlow
.onEach { resolveLoadState(it) }
.launchIn(viewLifecycleOwner.lifecycleScope)
viewModel.itemsStream.observeWithViewLifecycleOwner {
adapter.submitData(viewLifecycleOwner.lifecycle, it)
}
}
private fun onRefresh() {
adapter.refresh()
}
private fun FragmentItemListBinding.resolveLoadState(loadState: CombinedLoadStates) {
val adapterEmpty = adapter.itemCount < 1
swipeRefresh.isRefreshing = loadState.refresh is LoadState.Loading && !adapterEmpty
// resolve all other states here...
}
问题是,当刷新正在进行时,分页停止工作(并且任何正在进行的请求都被取消,而 UI 保持不变 - 谈论你LoadStateFooter
)。它会停止,直到刷新成功,其中包括失败。
如果我没有任何数据,我只会显示一个错误屏幕。但在这种情况下,我想查看前面的项目并在出错后继续分页。
有没有办法在刷新错误的情况下继续分页?
用于分页的官方架构组件示例具有相同的行为。