Skip to content
Advertisement

Android Paging Library: How to intelligently switch Between online and offline data?

I am following this tutorial by Raywenderlich on paging-library-for-android-with-kotlin on how to use android paging library. This is one of the easiest tutorials on the net and I have followed it thoroughly. However, I would like to make some changes so that I can intelligently switch between online data and offline data.

That is, I have old some posts in my database. Initially I have internet connection. So I load latest data from internet, then insert it into my database. Finally, I show this latest data in my recyclerView / PagedListAdapter. If for some reason, there is no internet connection after sometime, I should show the old posts from database.

How can I do this?

My attempts:

This is my code on github repository.

Here, I tried to create a factory pattern. It checks if initially I have internet, the factory returns pagedList from online dataSource. ELse, the factory returns pagedList from offline dataSource. But this doesnot intelligently switch between the 2 states.

I tried some random codes such as creating a boundary callback. But I am not sure how to make the necessary changes. I am not adding codes here (at least for now) to keep it short and precise.

Can anyone help me?

Edit:

To be specific, I am loading paged data primarily from network. If there is a network error, I don’t want to show the user an error. Instead I load paged data from cache / database and continuously show it to my user as long as possible. If the network is back,switch back to network paged data. (that’s what instagram / facebook does I think). What is the appropriate way to implement this? See my code / attemp in the answer.

Advertisement

Answer

Okay, so after trying out some codes for 2 days, this is what I came up with. However, I really don’t know if this is a good pratice or not. So I am open to any acceptable answers.

Explanation:

Since I have multiple data sources(network and database), I created ProfilePostDataSource: PageKeyedDataSource<Pair<Long, Long>, ProfilePost> here the key is a pair, the 1st one for network pagination, the 2nd one is for database pagination.

I used kotlin’s Coroutine to write some asynchronous codes in a simple if-else like manner. So we can write it in a psudo-code like this:

JavaScript

So in apps like facebook, instagram etc, we see them primarily loading data from network. But if the network is down, they show you a cashed data. We can intelligently make this switch like this code.

Here is a relevant code snippet, the PageKeyedDataSource written in kotlin:

ProfilePostDataSource.kt

JavaScript

Thank you for reading this far. If you have a better solution, feel free to let me know. I’m open to any working solutions.

Advertisement