android-paging Questions
2
Solved
With android Paging library it is really easy to load data from Database in chunks and ViewModel provides automatic UI update and data survival. All these frameworks modules help us create a great ...
Bodine asked 10/1, 2020 at 16:10
3
The new paging library allows us to specify a custom data source to use with data pagination. Paging library documentation and sample code on github show us how to create your custom data source in...
Dunderhead asked 1/7, 2018 at 13:37
0
I wanna to implement jetpack paging library.
everything seems working, after getting response from api (using Retrofit2 and coroutine)
android paging callback is calling his onResult interface.
...
Crenshaw asked 24/11, 2019 at 12:44
3
In my fragment, I integrated android jetpack paging library and the data source I using PageKeyedDataSource with retrofit API callback.
the code runs as excepted and loads the data to recyclervie...
Distillate asked 16/7, 2018 at 3:30
4
Solved
I have an Android To-do list app with SQLite database accessed using Room. Then I wanted to make a list of available lists in navigation drawer. So I used Paging Library. Now the RecyclerView is em...
Diversion asked 22/2, 2018 at 12:40
0
I want to use the Paging Library and I'm getting the data from a network call using coroutines. I've verified the data is retrieved correctly from the server but then when I call the callback from ...
Crash asked 22/10, 2019 at 15:27
2
Im trying to make a dictionary application with Paging library.
when a user writes any letters, I will call an API and get all the words including that letter.
The problem is that, when I call the...
Innerdirected asked 5/5, 2019 at 15:20
3
I am using paging library to fetch data from server, I was thinking of showing Ad after every 10 items. So as the user scrolls down and new items are fetched and added to PagedList. I want the new ...
Buckles asked 5/6, 2019 at 12:56
1
Solved
I have been implementing the new Paging Library with a RecyclerView with an app built on top of the Architecture Components.
The data to fill the list is obtained from the Room database. In fact, ...
Occlusion asked 16/5, 2018 at 9:19
1
I have tried adding a header the normal way (different view type, incrementing the data count by 1 etc.), but the paged list scroll bar jumps to the bottom of the list.
I have since come across th...
Illative asked 9/9, 2019 at 11:41
1
Solved
I am having activity that displays list of items and also having filter and search option. I am displaying the items using android paging library. First time the List of items will be loaded its wo...
Cyanite asked 8/9, 2019 at 10:17
3
I have been working with the arch libraries from Google, but one thing that has made testing difficult is working with PagedList.
For this example, I am using the repository pattern and returning ...
Roslynrosmarin asked 20/5, 2018 at 14:22
1
Setup :
We are using PagedListEpoxyController, RxPagedListBuilder, ItemKeyedDataSource with a runtime Mockgenerator which just creates a user with respect to the index of data that is generated, f...
Wert asked 13/6, 2019 at 5:32
2
So, I've playing with Android's new Paging Library part of the JetPack tools.
I'm doing a very basic demo App where I show a list of random user profiles that I get from the RandomUser API.
The t...
Teen asked 29/5, 2018 at 19:38
2
I'm currently looking into incorporating the Paging Architecture library (version 2.1.0-beta01 at the time of writing) into my app. One components is a list which allows the user to delete individu...
Mountaineer asked 10/11, 2018 at 21:43
2
I'm trying to use the new Paging Library and Room as database but I'm facing a problem, the PagedList returned by the database is not supposed to be the same list sent to the UI, I map some entitie...
Catholicism asked 19/9, 2018 at 14:6
1
Solved
I'm using paging library with Room livedata, in some devices sometimes i receive IndexOutOfBoundsException Index out of bounds - passed position = 75, old list size = 75 (always with size 75, none ...
Micronesia asked 6/4, 2019 at 5:10
1
After shifting from SqliteOpenHelper to room in my app, I've trying to write tests for the DAO class.
My DAO looks something like this:
@Query("SELECT * FROM cards")
fun getAllCards(): List<...
Consumerism asked 28/2, 2019 at 7:55
1
I've integrated the pagination component in my app and it's working perfectly fine (almost).
I've Database + network model. Database initially has some items which are consumed by LivePagedListBui...
Mogador asked 8/5, 2018 at 10:45
1
I am trying to use LiveData for paging data from my Room database. The sample code from Google indicates the use of a toLiveData function:
class ConcertViewModel(concertDao: ConcertDao) : ViewMode...
Persecution asked 31/5, 2019 at 7:19
2
Solved
I have a list with pagination which I implemented using Paging library. Items on this list can be modified (changed/deleted).
According to official documentation, I'm first changing in-memory list...
Linter asked 23/2, 2019 at 22:30
0
I have multiple data sources. But there is only one DataSourceFactory. So, all sources is sharing one factory. I need one DataSourceFactory per data source.
In my app, I have multiple views with R...
Glinys asked 19/2, 2019 at 14:40
3
Solved
I'm using the Room and Paging libraries to display categories.
My Entity:
@Entity(tableName = Database.Table.CATEGORIES)
data class Category(
@PrimaryKey(autoGenerate = true) @ColumnInfo(name = ...
Scheme asked 2/2, 2019 at 14:0
3
I use Paging Library to paginate my data set. What I'm trying to do is to refresh the RecyclerView after data in my database has been changed.
I have this LiveData:
val listItems: LiveData<Pag...
Hardin asked 28/10, 2017 at 10:22
1
Actually, I am new to Paging Library. Here is situation, i'm observing PagedList from my ViewModel which is always returning zero even news list appeared on UI.
viewModel.getNews().observe(this, ...
Remmer asked 30/10, 2018 at 4:25
© 2022 - 2024 — McMap. All rights reserved.