Photo by Fredy Jacob on Unsplash

Android Storage

tomerpacific
Published in
5 min readAug 22, 2019

--

It’s this thing we are all aware of, but always take for granted. As the technology progressed, we cared less and less about how much memory our devices have. If before, every leap was incremental and appeared to be impossible. Nowadays, we don’t give a second thought when contemplating how much memory our devices have (and we could care less about the differences).

A bigger point would be to look at the evolution of what is stored in the memory. Before smartphones, we saved the occasional photo or two, some games and a ton of text messages. But now, any standard phone will have a concoction of applications, documents, photos, videos, music files and more. Let’s find out how we can utilize our devices storage space for our applications.

What we’re going to cover in this article is:

  1. Go over the the types of storage on Android phones
  2. Talk about their differences
  3. Show how to use them inside your application

Each application has access to two different types of storage: internal and external. There are major differences between these two types of storage and knowing them will help you when designing your next application and it’s needs.

Before we begin, one word must be said about storage and cache. Storage is meant for things you want to save persistently, while cache is there to save things temporarily.

Photo by Erda Estremera on Unsplash

Internal Storage

When each application is run on the operating system, it has it’s own internal storage. This storage is private and only for the use of the application. Meaning, other applications cannot access it and nor can the user. Another thing to keep in mind when using internal storage is the availability of it. Opposite to external storage, internal storage is always available for your application. Using this storage has it’s drawbacks, though. If the user removes the application, all the data stored in the internal storage is removed as well. Imagine what would happen if you installed a game on your phone and somewhere down the road decided to remove it. You would like to have your game progress saved, if by any chance you would install the game again.

So, how do we save a file to the internal storage?

Saving a file called hello_world_file

As you can see in the code example, we are saving a file called hello_world_file that contains the text, “Hello From Internal Storage!”. I have created two catch clauses just to demonstrate the exceptions that may occur when trying to do this, but you can minimize them to one catch clause with the general Exception object.

Pay attention that the method openFileOutput will open the file if it already exists, but if not, will create it. The second parameter to this method is the file mode. This parameter designates the scope of the file and access to it. The default value is MODE_PRIVATE, which makes the file accessible to your application only. The other two values for this parameter were MODE_WORLD_READABLE and MODE_WORLD_WRITEABLE, but they have been deprecated since API 17. Sharing private files with other applications uses a different set of logic that you can read more about here. Finally, when writing to the file, we convert our string to bytes and we make sure to close the file at the end.

Photo by Markus Spiske on Unsplash

External Storage

Contrary to what the name implies, this is storage that is defined by the fact that it is not always accessible. This may mean that it can be an external SD card (secondary external storage), but it can also be storage found on the device (primary external storage). To bring the fact home, external storage is storage that can be accessed when you plug your device to your computer via a USB cable. As you may have guessed, anything stored in this type of storage is accessible to other applications on your device, but will be kept if you uninstall the application.

Before we can demonstrate how to save files to the external storage, we need to do two things:

  1. Make sure there is enough space there to save the file
  2. Ask for permission during runtime

Making sure there is enough memory free, requires these following lines of code:

Checking if we can write and read to external storage

To get access to the external storage, we need to add the following permission to our AndroidManifest.xml:

Write external storage permission

Furthermore, since API 23, dangerous permissions aren’t authorized during install time, but during runtime. Writing to external storage is categorized as one, so we need to add logic to allow the user to decide whether to grant the application permission or not.

Check if the user has granted permission

Our writeFileToExternalStorage looks like this:

Write a file to external storage

If you want to see an example of all the code presented here, you can head over to the GitHub repository.

Photo by Steve Johnson on Unsplash

Good To Know

Above were just two simple examples of how to work with the types of storage from your application. Since we are dealing with a resource that the system manages, we should also be aware of the behaviors associated with it. By default, your application will be installed inside the internal storage (see internalOnly explanation), but beginning at API level 8, you can add an attribute, installLocation, to your manifest that let’s your application be installed on the external storage. One reason for doing so is if your application is very large and you would prefer the user to install it on the device’s external storage since there is more space there. There are three values for this attribute:

  • auto - means that you don’t have a specific preference where the application will be installed. The application will try to be installed inside internal storage, but if it is full, it will install it inside external storage
  • internalOnly - the application will only be stored inside internal storage, and if there isn’t enough space there, it will not be installed
  • preferExternal - means that you want your application to be stored in the external storage, but if there is not enough room there, it will be installed internally

For both the auto and the preferExternal options, the user has the option of moving the application from the external storage to the internal and vice versa.

Pay attention that once a user connects his/her device to a computer and enables to share data or unmounts an SD card, all applications running from the external storage are destroyed. If your application uses one of the following features, you should not install it inside external storage:

Various services (alarm service in particular), Input Method Engines, Live Wallpapers, Application Widgets, Account Managers, Sync Adapters, Device Administrators and Broadcast receivers listening for boot completed.

--

--