首页 > 解决方案 > dataSource.inValidate() 不工作分页库

问题描述

我正在使用具有 MVP 架构的分页库。数据源是在交互器中创建的,我试图使片段中的数据源无效,如下所示。

我的片段

class MyFragment : BaseFragment<MyFragment>(), MyView {

@Inject
lateinit var mPresenter: ActivePrescriptionPresenter<ActivePrescriptionView>
private var isRefreshRequest = false // Used to handle the visibility of toast message and Swipe to Refresh layout when Swipe to refresh is used

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
                          savedInstanceState: Bundle?): View? {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.fragment_active_prescription, container, false)
}

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
    super.onViewCreated(view, savedInstanceState)
    initDagger()
    mPresenter.setView(this)

    initializeActivePrescriptionList(pId)


    // Swipe to refresh
    srlActivePrescription.setOnRefreshListener {
        isRefreshRequest = true
        context?.toast("Refreshing")
       mPresenter.getActivePrescriptionLiveData().value?.dataSource?.invalidate()
    }

}

private fun initializeActivePrescriptionList(patientId: Int) {

    mPresenter.getActivePrescriptionLiveData().observe(this, Observer<PagedList<PrescriptionResponse.Data.Result>> { pagedList ->
        activePrescriptionAdapter.submitList(pagedList)

        // Show toast message if the swipe to refresh was used
        if (isRefreshRequest) {
            srlActivePrescription.isRefreshing = false
            context?.toast(getString(R.string.text_refreshed))
            isRefreshRequest = false
        }
    })

    mPresenter.getNetworkState().observe(this, Observer<NetworkState> { networkState ->
        activePrescriptionAdapter.setNetworkState(networkState)
    })
}
}

我的PresenterImpl

class MyPresenterImpl @Inject constructor(var mInteractor: myInteractor) : MyPresenter<MyView> {

var mView: WeakReference<MyView>? = null

override fun setView(view: MyView?) {
    mView = WeakReference<MyView>(view)
}

override fun getNetworkState(): LiveData<NetworkState> {
    return mInteractor.getNetworkState()
}

override fun getActivePrescriptionLiveData(): LiveData<PagedList<PrescriptionResponse.Data.Result>> {
    return mInteractor.getActivePrescriptionLiveData()
}
}

MyInteractorImpl

class MyInteractorImpl(val activePrescriptionService: ActivePrescriptionService,
                                   val networkUtils: NetworkUtils<PrescriptionResponse.Data>,
                                   val networkExecutor: Executor,
                                   val pagingConfig: PagedList.Config)
: MyInteractor {

private var activePrescriptionLiveData: LiveData<PagedList<PrescriptionResponse.Data.Result>>
private var networkStateLiveData: LiveData<NetworkState>

companion object {
    lateinit var activePrescriptionDataSource: ActivePrescriptionDataSource
}

init {
    activePrescriptionDataSource = ActivePrescriptionDataSource(activePrescriptionService, networkUtils, networkExecutor)
    val dataSourceFactory = object : DataSource.Factory<Int, PrescriptionResponse.Data.Result>() {
        override fun create(): DataSource<Int, PrescriptionResponse.Data.Result> {
            return activePrescriptionDataSource
        }
    }
    val pagedListBuilder = LivePagedListBuilder<Int, PrescriptionResponse.Data.Result>(dataSourceFactory, pagingConfig)

    activePrescriptionLiveData = pagedListBuilder.build()
    networkStateLiveData = activePrescriptionDataSource.getNetworkStateLiveData()
}

override fun getNetworkState(): LiveData<NetworkState> {
    return networkStateLiveData
}

override fun getActivePrescriptionLiveData(): LiveData<PagedList<PrescriptionResponse.Data.Result>> {
    return activePrescriptionLiveData
}
}

但问题是,当数据源失效时,什么也没有发生。我需要重新获取滑动中的列表以刷新。任何帮助将不胜感激。

PS 我找不到任何将分页库与 MVP 结合使用的示例,因此我自己实现了它。如果我在这里做错了什么,请告诉我。

标签: androidandroid-architecture-componentsandroid-pagingandroid-paging-library

解决方案


您必须始终创建DataSource内部工厂create方法的新实例:

val dataSourceFactory = object : DataSource.Factory<Int, PrescriptionResponse.Data.Result>() {
    override fun create(): DataSource<Int, PrescriptionResponse.Data.Result> {
        return ActivePrescriptionDataSource(activePrescriptionService, networkUtils, networkExecutor)
    }

一旦DataSource失效,它就失效了——你不能再使用它了。这就是为什么你必须在create()


推荐阅读