codelab-android-paging icon indicating copy to clipboard operation
codelab-android-paging copied to clipboard

Jetpack Paging codelab

Results 37 codelab-android-paging issues
Sort by recently updated
recently updated
newest added

I am using remote mediator and compose. The append loadtype is getting called every time on initial load. The append load type is triggered even without scrolling. I am getting...

I'm able to populate the list and pagination is working as expected. But when I call adapter.refresh() method twice by using pull to refresh, the pagination stops working. Please refer...

Error on branch `step13-19_network_and_database` Seem like occurring after adopt Kotlin 1.6. https://github.com/googlecodelabs/android-paging/blob/step13-19_network_and_database/build.gradle ```groovy buildscript { ext.kotlin_version = '1.6.0' repositories { google() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:7.0.4' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" }...

when calling 'refresh()' 'load size' is again '3 * NETWORK_PAGE_SIZE' so I changed the prevKey & position

## Description Fixed some logical errors; - `lastRequestedPage` incrementation is skipped if not going through the `requestMore` so added to the `requestAndSaveData` instead as it was leading to erroneous counting...

The code doesn't compile when using AS Bumblebee, in order to make the app compile the room version has to be roomVersion = '2.4.2' and also implementation "androidx.room:room-paging:2.5.0-alpha01" needs to...

When Page size is set to 20, visible_threshold is 5 and search with keyword "Wasabee" the total items received is 21, but on scroll, there are duplicate items summing up...

How to add, update and remove item to PagingDataAdapter or how is it possible to implement this when working with pagination?

with version "3.0.0-alpha08" How to reproduce afaik: with a PagingSource which can provide more elements than PagerConfig.maxSize, 1. scroll down more items than maxSize, 2. scroll up until a load...

Hello, I notice if change build.gradle to java 11, all the View package cannot be found. This is fresh new clone from branch step13-19_network_and_database with the compile option change. I...