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

learn more… | top users | synonyms

1
vote
1answer
32 views

Join file in APK to store them in SD card [closed]

For some reason i need to join some defaut file with my apk but i need to write to sd card because my app try to read the sd card i need to store the first time my default file in sd card How to do ...
1
vote
1answer
35 views

Android/Java File.mkdirs() in external storage not working

First off, I want to specify that I do have <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> specified in my manifest, and I do check Environment.MEDIA_MOUNTED. ...
0
votes
1answer
26 views

ListFiles is not getting the folder files correct on first time

I want to get the list of files present in the particular folder. But listfiles returning size 0 at the first time of capturing image from camera. But if i take next image from camera, the size ...
0
votes
3answers
48 views

how to store persistent data in java

I am very new to java and am making some assumptions based on what I have read, so please correct me if I am wrong. I'm making an Android app that downloads JSON data from the SD card, which you can ...
1
vote
1answer
42 views

Set ImageView from Bitmap (null pointer exception)

So my app has an ActionDialog which contains a blank canvas as the interface with simple cancel and save buttons. What is happening is best demonstrated in a brief illustration Screen layout before ...
0
votes
3answers
52 views

How to Get All Memory Path (Internal or External Memory) list in android

I'm facing problem to detect all memory path in Android device. If we try with provide tips and example we aren't able to getting proper external memory path. For Example : If we try to get external ...
0
votes
1answer
23 views

getExternalStorageState() showing 'mounted' but still unable to create folder

Manifest has " "uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" " Application settings, 'Storage' = modify/delete SD card contents' Same results on Samsung Tablet running ...
0
votes
1answer
22 views

Android: FileObserver monitors only top directory

According to the documentation, "Each FileObserver instance monitors a single file or directory. If a directory is monitored, events will be triggered for all files and subdirectories inside the ...
0
votes
1answer
50 views

How to merge two audio .wav file

I know this question is discussed already but after googled a lot I cant able to find the solution why two .wav merged file is not playable?I am merging two .wav file into one file.But the merged file ...
0
votes
1answer
21 views

Cant fetch the name and date of image

I am new in Android and im working on Grid View which i have implemented when i click an image in the grid view i have the path of the image in a variable "path" of type String it is something like ...
-5
votes
1answer
57 views

How can I Hide Empty Folder when fetching Data of SDCard From Android Application? [closed]

I Have created one application in which i have to access my SDcard memory from the application. in that What should i do to hide all empty folders? So its easy to get relevant data faster.
0
votes
0answers
23 views

Copying asset files to SD Card (file not found)?

I'm trying to copy files for Tesseract to use and no matter how I try it keeps giving me filenot found exceptions. I don't understand why because I have them in the assets folder. I tried it one way ...
0
votes
0answers
26 views

Tesseract unable to copy data to SD?

I think I'm doing something wrong with my paths but I can't figure out what. I am testing on a Nexus 7 if that's relevant. Following examples I tried to copy the tessdata folder over to the SD card ...
0
votes
3answers
109 views

parse json file from SD card in android app

I have an array of JSON objects on an SD card. I get the file contents like this: File yourFile = new File("/mnt/extSdCard/test.json"); FileInputStream stream = new ...
0
votes
1answer
34 views

Copying a local Database and mailing it.

I have made an application which is about pets, at first I had kept the database local to the phone, however as new features arrive I want to make it a network based application with remote database. ...
0
votes
0answers
28 views

File Reader, Android Phone Application

Im having an issue with my file-reader part, im trying to split my text file that is stored in the sd after that store it into an array. Im not sure how to proceed in this manner. this what i have ...
0
votes
1answer
26 views

How to get files stored in inbuilt external storage

I had created a mdatabase.db file on the sdcard in a directory named MyDataBase, this is fine, when i open the sdcard via phone the dir and files are showing, but when i connected the device to system ...
0
votes
0answers
63 views

Identfying external sd card uniquely in android application means fetching meta data of an external sd card

The query is I am developing an android application which stores data stored in external sd card on my server and keeps it updating from the external sd card. So Now when user is removing the sd card ...
3
votes
4answers
71 views

how to store a file in to comman path of android storage?

The problem is there.... My app download a content like audio,video and images the download is perfect working... But when I use Lenovo mobile device then download was not working.. and also the ...
0
votes
1answer
318 views

How to extend device memory by using SD card partition?

I have smartphone (HTC Explorer, Android 4.1.2) with SD card (16 gb, class 10). Unfortunately it have only 100 mb internal memory. Is there any way to programmatically extend internal memory size by ...
1
vote
1answer
69 views

How to know whether my Android BroadcastReceiver is registered or not

I am using an BroadcastReceiver for action related to sd card events like mount / unmount. Now the situation is my receiver is not working. My application only have an BroadcastReceiver no GUI, no ...
1
vote
0answers
67 views

Inserting / Removing sd card from android emulator while it is running

Actually I am working on a android app in which I have to use BroadcastReceiver for getting notified when external sd card is inserted, removed unmounted. Now the problem is that I want to test it on ...
0
votes
1answer
46 views

sd-card in android virtual device

I have created an Android virtual device with sd-card. Now I want to create another Android virtual device with sd-card with same data. Where can I find the sd-card image file? By the way, I'm ...
1
vote
0answers
65 views

How to save HTML page using webView.saveWebArchive() below API level 11?

I want to save the HTML page locally on the SD card and reuse it later. I am able to do the same using webView.saveWebArchive(filename); But this method is not present below API level 11. How can ...
3
votes
1answer
53 views

How to load JS & CSS from SDCARD with loadDataWithBaseURL() method

I have a .html, .js, .css files on SDCARD, in my case html file contents are in encrypted form. I'm loading html file in following steps : Read file content Decrypt all content Load all content into ...
0
votes
2answers
125 views

Recommended path for caching images on external memory / sd card

When I look at my sd card root directory in Android file transfer or Astro file manager it's a mess because apps are storing files all over the place. As developers we follow best practice by caching ...
2
votes
2answers
236 views

Prevent duplicated image saved to SD card

I have a listactivity app forming multiple rows. Each row opens an activity containing views, one of them is a button, when clicked open infinite gallery class ( images stored in RES => drawable ...
0
votes
0answers
59 views

Android: Why can't I receive “android.intent.action.MEDIA_MOUNTED” intent

I am trying to receive event whenever sd card is mounted into the slot. However, I am not able to receive the event. Do I have to add any permissions? I don't see any in the documentation. ...
0
votes
0answers
105 views

load sd card image in list view android, VM out of budget

i have a list view in which i show a number of images from SD card but the problem is it shows memory out of budget error. i am a new android developer and dont know much about this problem. But after ...
-3
votes
0answers
55 views

Malware has corrupted SD card files [closed]

I have android phone with SD card. Malware has moved all files to other folder. Then I copied it to previous place. But now it doesn't show applications placed in menu. It shows it in settings. What ...
0
votes
0answers
142 views

query sdcard files and timestamps using adb

I've taken a look at this question: How do i adb pull ALL files of a folder present in SD Card ...but I cannot use its answers since it requires root access, and pulling files is slow. I'm writing ...
1
vote
2answers
160 views

How to create a file that other applications (Polaris Office) can read only?

Here is what I'm trying to do in my app. I download files (docx, pptx, pdf, mov, etc) and store them in a File. After having downloaded the file, I want the user to be able to open it and read it. I ...
0
votes
3answers
117 views

Writing Bitmap to external storage (sdcard)

I'm trying to save Bitmap that I have in certain activity to External Storage in a directory that I create for this purpose. The method for saving the image to sdcard (external memory, not external ...
0
votes
1answer
171 views

mp3 file not getting pushed into android sd card on linux fedora

I am developing an android app in which I am developing an content observer for Audio.Media.EXTERNAL_CONTENT_URI I am using linux fedora 17 with eclipse and api level 17 android Jelly bean Now the ...
0
votes
0answers
175 views

How to recognize sd card storage path and device memory storage path independent of OEM for Android Devices?

How to recognize sd card storage path and device memory storage path independent of OEM for Android Devices? Since for different OEMs there is no standard way to find out the external memory and ...
1
vote
1answer
59 views

Premission denied when trying to save file to sd card

Im trying to save a textfile to the sd card but i am getting the Eacess (permission deined) error. My code looks as following: try { File myFile = new ...
5
votes
1answer
407 views

Observing changes in android content observer for Audio.Media.EXTERNAL_CONTENT_URI

Hello everyone , Sorry if you think that this question is repeated but I am asking this question because seriously I am not getting the solution for it. Actually I am developing an android app in ...
0
votes
4answers
194 views

Which is faster to access a file in android, sdcard or system partition?

I have one simple question. If i have one file in system partition of android and if i copy the same file on sdcard, which will be faster to access? Please answer this question. Thanks in advance
0
votes
1answer
209 views

How can i add sdcard images to coverflow?

Here is my coverflow with drawables :( This is my Image Adapter Code /** The Constant IMAGE_RESOURCE_IDS. */ private static final List<Integer> IMAGE_RESOURCE_IDS = new ...
0
votes
0answers
83 views

Android sd card on PC [closed]

I want to create an application like Virtual Data Cable on Google play store. I want to expose the sd card of the device which is on the same network when ever the application starts. How can i ...
0
votes
1answer
65 views

Android Image from url to image view

i am following this tutorial for getting the image from image url. http://www.androidhive.info/2012/07/android-loading-image-from-url-http/ i think he is creating some "Tempimages" folder in ...
0
votes
2answers
120 views

Parse xml file from sdcard

How to parse xml file from this code. Code is working from URL but what i need to parse xml file from sdcard. I add premission to write and read from sdcard. Code : menuItems = new ...
2
votes
1answer
55 views

How can i restore my database to its original directory?

Here is the code to save/copy my data in to SDcard,when i click on Backup Button my database saved in sdcard in NOTEIT directory and now i want to restore this database when i click on restore button ...
1
vote
2answers
57 views

External Storage issue in android

I am using the path as "/mnt/sdcard/myfolder/myfile" to store my file in android app. Will it give any error when the app running on the phone which does not have any sdcard slot(phone like Nexus S)?
1
vote
1answer
57 views

Save images from database to sdcard

I want to find a way to save images that are in sqlite database in sdcard,If I use a simple query I can find Image data but How Can I save them for example in sdcard/temp I searched a lot but cant ...
-1
votes
1answer
26 views

Randomly selecting images from a folder in my android SDCARD [closed]

*How do I randomly select images from a folder in my android SDCARD. Suppose there are 10 images in the folder "pictures" in the SDcard. Now I want to select these 4 images from these 10 images ...
0
votes
1answer
42 views

Problems getting database from SD card

I'm trying to read a SQLite database stored on the SDCard. Part of the code is as follows: public String getTables() { String dbFullPath = Environment.getExternalStorageDirectory().toString() + ...
2
votes
2answers
456 views

java.Lang.RuntimeException, setParameters failed in android(4.1.1) version

I have developed an application which captures a photo when punch in at the time. It's working good on Acer tab(capturing image and saves in sdcard). Now when I run the same application in Samsung ...
4
votes
1answer
197 views

Changing android:installLocation from preferExternal to internalOnly

I have an app on Google Play market and I added android:installLocation="preferExternal" to manifest.xml file and released long time ago. Now I would like to add Android home screen widget, so I need ...
0
votes
0answers
41 views

java.util.logging.Logger (to disk) always active in my Android app

I'm not sure is a good idea to have java.util.logging.Logger (writing to disk, with max file len set) running all the time: logger = Logger.getLogger("myLog"); handler = new ...

1 2 3 4 5 12