Caching Solutions
In this chapter, we will improve user experience by implementing offline support, so when we launch the application, the blog list screen must immediately show cached data. This lesson explains the different options available on Android to cache the data for offline support.
We'll cover the following...
Preferences #
One of the most common ways to persist data on the Android phone is to use SharedPreferences.
The shared preference is basically a key-value store solution for a small amount ...