Top "Android-sdcard" questions

SD Card is a Secure Digital Card available with Android which acts as the External Storage Directory.

Android SD card writing, Permission Denied

I am trying to write a file to SDCard with below Code (permission android.permission.WRITE_EXTERNAL_STORAGE already set …

android android-sdcard
Universal way to write to external SD card on Android

In my application, I need to store lots of images in the device storage. Such files tend to fulfill the …

java android android-sdcard android-external-storage
How to get the internal and external sdcard path in android

Most of the new android devices have an internal sdcard and an external sdcard. I want to make a file …

android file android-sdcard android-file
Android - Taking photos and saving them with a custom name to a custom destination via Intent

I have a program that opens the camera via Intent to take a photo. That much part works fine already. …

android camera android-sdcard android-camera-intent
Saving Logcat to a text file in Android Device

I had found some crashes while running the application in android device, which is not showing in emulator. So i …

java android eclipse logcat android-sdcard
Environment.getExternalStorageDirectory().getAbsolutePath() gives a different path - Android

I try to write something into my phone memory. At first, I hard-coded the path as: myFile = new File("/sdcard/" + …

android android-sdcard
Android: Display Image from SD CARD

This is driving me insane! Here's my code (I know this file exists): File imageFile = new File("/sdcard/gallery_photo_4.…

android android-sdcard android-imageview
reading a specific file from sdcard in android

how to read a specific file from sdcard. i have pushed the file in sdcard through DDMS and i am …

android file android-sdcard
Writing Text File to SD Card fails

I have a strange problem I've come across. My app can write a simple textfile to the SD Card and …

android android-sdcard android-file
Saving to SD card as text file

stopWriting = (Button) findViewById(R.id.save); stopWriting.setOnClickListener(new OnClickListener() { @SuppressLint("SdCardPath") public void onClick(View v) { // stop recording the …

java android save android-sdcard android-memory