Top "Android-paging" questions

The Paging Architecture Component makes it easier for your app to gradually load information as needed from a data source, without overloading the device or waiting too long for a big database query.

Paging Library Filter/Search

I am using the Android Paging Library like described here: https://developer.android.com/topic/libraries/architecture/paging.html But …

android search android-paging
How to update LiveData value?

I am using the new paging library for my data. Everything works fine when the ViewModel is created and live …

android android-architecture-components android-livedata android-paging
Forcing Paging Library DataSource refresh

In my ViewModel, I load data using private val pagingConfig = PagedList.Config.Builder() .setEnablePlaceholders(false) .setInitialLoadSizeHint(INITIAL_LOAD_SIZE_HINT) .…

android-architecture-components android-jetpack android-livedata android-paging android-architecture-lifecycle
Why LiveData setValue or PostValue triggers onChange just once in the view?

LiveData setValue should have triggered the onChanged method in the Activity, however it calls only at the first time, after …

java android kotlin android-livedata android-paging
Modifying PagedList in Android Paging Architecture library

I'm currently looking into incorporating the Paging Architecture library (version 2.1.0-beta01 at the time of writing) into my app. One …

android kotlin android-architecture-components android-paging
Paging Library: How to reload portion of data on demand?

I use Paging Library to paginate my data set. What I'm trying to do is to refresh the RecyclerView after …

android pagination android-architecture-components android-paging
Paging library DataSource.Factory for multiple data sources

The new paging library allows us to specify a custom data source to use with data pagination. Paging library documentation …

android android-architecture-components android-jetpack android-paging
How to remove an item from PagedListAdapter in Android Paging Component

I used Paging with Retrofit to loading list of Notifications data from REST API. When I press delete button of …

android android-architecture-components android-paging