Right now I'm working on an Android project which contains a RecyclerView
with a large amount of data. For improving the app's performance I wish to implement the Paging
component introduced in Android Jetpack
. Since the project is pretty old, it is using SQliteOpenHelper
for SQLite
implementation instead of Room
DB. In all of the paging examples found in related to paging using Room DB to fetch 'PagedList
', so is it possible to use paging without room?
Thanks in advance.