Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9253271
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:10:37+00:00 2026-06-18T11:10:37+00:00

I am writing an android app where the end user will capture pictures. Normally,

  • 0

I am writing an android app where the end user will capture pictures. Normally, I would store application data (worth a few KB) in the internal storage. But here, these pictures come around to 450K each, and there could be several of them.

Since the internal storage is limited, is it a good idea to store these images there or should I go with the External Storage? I’m just looking for best practice suggestions here.
Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T11:10:39+00:00Added an answer on June 18, 2026 at 11:10 am

    It depend on your app functionality and how big images will grow.

    Storing on external storage is better to save internal storage space, but you should beaware that external storage is not always available (e.g. when USB is connected in file transfer mode) so you need to check if it is mounted first, here an example helper function

    public boolean isExternalStorageMounted() {
        String state = Environment.getExternalStorageState();
        if (Environment.MEDIA_MOUNTED.equals(state)) {
            return true;
        }
        return false;
    }
    

    Also, you should avoid creating an independent folder on the SD card if you want your files to be deleted when the app is uninstalled, you should use getExternalFilesDir() to your directory where you can save your images, that will be removed when your app is uninstalled.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing an android app. I want to pass some data across the
So I'm writing an android app that needs to grab book price data from
I am writing an application where the user inputs song information that will then
I am writing an application for Android 2.3.5 (that will also be compatible with
I am writing an Android app where the user must choose how and what
I am writing an android app giving each client a long user ID through
I'm writing an Android app using webview. The app gets the data from the
I'm writing an Android app which receives data from a server. Theoretical there could
Im writing an android app that connects to my own Jersey rest client. HTTP
I'm writing an android app and I need to read several files from several

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.