August 2016
Intermediate to advanced
412 pages
9h 3m
English
The storage is the process that saves information into our device or computer. Android API basically offers five different types of storage:
The first and basic one is known as SharedPreferences. This type of storage saves into XML files, in the private folder, the information we have saved as pairs of primitives associated with each value. In the following screenshot we can see all the files under the folder, shared_prefs. Those files are SharedPreferences files.

If we pull one of them from the device, we will be able to see the following content:
Each value inside the XML file has the following structure:
<string ...
Read now
Unlock full access