The Android Paging Library makes it easy to integrate complex paging behaviour, gradually loading small chunks of data at a time to help reduce usage of network bandwidth and system resources.

The library allows you to implement this behaviour using compositional components in a decoupled architecture making your code more reliable, scalable, and testable. Furthermore, you’ll be able to use familiar components such as LiveData or RxJava to interface with your existing architecture.

In this talk you’ll learn:

  • How to integrate the PagedList component into your architecture
  • How to implement a DataSource to load snapshots when necessary
  • How to use BoundaryCallback to signal the end of available data
  • How to integrate LiveData or RxJava to fit your project