---
title: "What are the different storage methods in android"  
description: "What are the different storage methods in android"  
author: "Anonymous User"  
published: 2015-06-11  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/2620/what-are-the-different-storage-methods-in-android  
category: "android"  
tags: ["android"]  
reading_time: 1 minute  

---

# What are the different storage methods in android

Android offers several different options for data persistence.\
**Shared Preferences** – Store private primitive data in key-value pairs. This sometimes gets limited as it offers only key value pairs. You cannot save your own java types.**Internal Storage** – Store private data on the device memory**External Storage** – Store public data on the shared external storage**SQLite Databases** – Store structured data in a private database. You can define many number of tables and can store data like other RDBMS.

## Answers

### Answer by Anonymous User

Android offers several different options for data persistence.\
**Shared Preferences** – Store private primitive data in key-value pairs. This sometimes gets limited as it offers only key value pairs. You cannot save your own java types.**Internal Storage** – Store private data on the device memory**External Storage** – Store public data on the shared external storage**SQLite Databases** – Store structured data in a private database. You can define many number of tables and can store data like other RDBMS.


---

Original Source: https://www.mindstick.com/interview/2620/what-are-the-different-storage-methods-in-android

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
