kaleidot725
4/1/2020 - 1:42 PM

2020/03/31 [Android]RecyclerView と Paging を組み合わせサンプルと解説 No4

2020/03/31 [Android]RecyclerView と Paging を組み合わせサンプルと解説 No4

class MainViewModel(private val itemDataSourcefactory: ItemDataSourceFactory): ViewModel() {
    val items: LiveData<PagedList<Item>> = LivePagedListBuilder(DataSource.Factory, PagedList.Config).build()
}