Tagged Questions

SD-card (Secure Digital) is a non-volatile memory card

learn more… | top users | synonyms (1)

21
votes
6answers
11k views

Decoding bitmaps in Android with the right size

I decode bitmaps from the SD card using BitmapFactory.decodeFile. Sometimes the bitmaps are bigger than what the application needs or that the heap allows, so I use BitmapFactory.Options.inSampleSize ...
17
votes
4answers
22k views

manually put files to android emulator sd card

I'm just having trouble with getting my emulator SD card work... I created a new AVD device with a new SD card. So how to put data onto it? I found the "correct" file to be mountet on Deamon tools, ...
13
votes
2answers
9k views

Android - Application (apk) Maximum size

I am going to install first application in my android phone, but having some doubts related to Android Memory (Maximum size of APK). So please help me know and solve the problems: What is maximum ...
11
votes
2answers
15k views

micro-SD card initialization using SPI interface

I'm using a micro-SD card in an embedded design. The card is connected to a microcontroller using the SPI interface. It worked fine for all cards I've used before, but now my new card will not ...
10
votes
1answer
649 views

How can I use SD card for data logging 16bit data at 48ksps

Background My board incorporated an STM32 microcontroller with an SD/MMC card on SPI and samples analogue data at 48ksps. I am using the Keil Real-time Library RTX kernel, and ELM FatFs I have a ...
10
votes
3answers
4k views

Android - Storing images downloaded from the web

I had a question related to whether or not (and how) I should store images loaded from the web. Let's say I am calling a web service from my Android app. In this web service I get a URL for an image ...
8
votes
1answer
3k views

android intent for sdcard ready

I have an application that uses a file on the SD card, the application runs when the phone boots, and it has become apparent that the file cannot be accessed when the program is first run as it starts ...
8
votes
8answers
10k views

How to backup database file to sdcard on android?

I'd like to add a feature to my android app that automatically backs up the sqlite database to the sd card. What's the best way to go about this? Any examples/tutorials available?
7
votes
1answer
579 views

Restart Service for App on SD Card When SD Card Is Remounted

Due to overwhelming user complaints I have decided try allowing users of my Android application to move it to the SD card as per the official documentation. However, a core feature of my application ...
7
votes
2answers
7k views

Android Mediaplayer: setDataSource issue for downloaded media file

I have an application that will record and play audio files. Some of the audio files are downloaded using simple standard http downloads using httpclient. It worked like a charm for a long time. Now ...
6
votes
6answers
5k views

Installing application on SD-card in Android sdk 2.2

I am facing this problem and finding solution for this issue since last 2 weeks. Right now i have developed an android application for the client perpose, whose size is 54 MB, from which 52 MB of ...
5
votes
3answers
1k views

Android devices with Environment.getExternalStorageDirectory() != /mnt/sdcard/?

Of course in my code I use Environment.getExternalStorageDirectory() instead of hardwiring /mnt/sdcard/. But I just realized that when I export data from my application via a database dump in an ...
5
votes
1answer
6k views

Android how to use Environment.getExternalStorageDirectory()

How can i use Environment.getExternalStorageDirectory() to read a a stored image from the SD card or is there a better way to do it?
5
votes
3answers
7k views

java.io.FileNotFoundException (Permission denied) When trying to write to the Android sdcard

I am trying to select an image file from the photo gallery and write to the sdcard. Below is the code that results in an exception. It appears to throw this exception when trying to create the ...
5
votes
3answers
1k views

Is there a limit for the number of files in a directory on an SD card?

I have a project written for Android devices. It generates a large number of files, each day. These are all text files and images. The app uses a database to reference these files. The app is ...
4
votes
2answers
411 views

Android External App Install (on SD card), reload alarmmanager alarms on re-mount through receiver

I'm developing an android app that I want to allow users to install on their SD card (http://developer.android.com/guide/appendix/install-location.html). However, the app has some Alarms created ...
4
votes
1answer
96 views

getting stringXmlContent and write then saved in to .xml file stored in sdcard in android how can possible?

I am implementing read and write xml in resource folder. Reading is ok, how can I modify this xml file save as sdcard: EditText myXmlContent = (EditText)findViewById(R.id.my_xml); String ...
4
votes
2answers
2k views

Set install location for Android 1.6?

I'm writing an application that is compatible with Android 1.6, but I would like to give users running Android 2.2 the option of moving the application installation to their sd card. How can I ...
4
votes
1answer
3k views

Why is my SD Card not writable (Android)?

In the emulator I can't seem to write to the attached SDCard. The following code always spits out the "can't write root" log message, but not the "can't read root" one. File routesRoot = ...
4
votes
3answers
430 views

Android: good practices for organizing dirs and files on storage SD card?

Are there any guidelines where should my app store resource files downloaded from internet?
3
votes
4answers
49 views

Detecting Sdcard in android?

I am using the following code to access sdcard if mounted else using the internal memory: if( android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED)) { ...
3
votes
3answers
65 views

how to display the video files from sdcard in android emulator? [closed]

how to display the video files from sdcard in android emulator? I want to display the video file if in sd card foleder some .mp3 files are there.how to show ?
3
votes
1answer
157 views

How to find Internal(Default Phone Storage ) and External Storage(Removable sd card) in android?

My Motorola Phone has 12GB internal storage and Removable Sd card feature. In DDMS file explorer my internal phone storage(12GB) is mounted as sdcard and my removable sdcard is mounted as sdcard-ext. ...
3
votes
1answer
105 views

If my app's installed on the SD card, is the private data there too?

I am presuming that an app's private data, such as SharedPreferences and SQLite databases, live on the phone's internal storage rather than the SD card, even if the app itself is installed on the SD ...
3
votes
3answers
547 views

Stream android logcat output to an sd card

I want to achieve the following but so far, no luck Open a file in the SD Card when the android application first started. Stream the logcat output to the file. When the application exits, stop the ...
3
votes
1answer
761 views

Android - How to start an application on the /sdcard after boot

Is there a way how to start and android application after a boot automatically if it is on the /sdcard? Ok, probably by BroadcastReceiver. But which action is the right one? ACTION_BOOT_COMPLETED - ...
3
votes
1answer
229 views

preferexternal in manifest not working when installing from market

The manifest of my app has the following settings <manifest ... android:installLocation="preferExternal"> and <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8"/> When ...
3
votes
1answer
2k views

Delete a folder on SD card

I tried File.delete() but it doesn't work. How to delete a directory on SD card? I'm working on Android 2.1.
3
votes
2answers
578 views

images,sdcard,android

I want to write code to display the images only from a particular folder in sdcard. e.g a folder named (/sdcard/folder/). I have the following code, but it displays all the images in the sdcard. ...
3
votes
1answer
375 views

How to implement SD Card Gallery without customization in android?

How to implement SD Card Gallery into our application directly? I know it is possible in iphone . We can implement and access photos of sdcard directly without any customization in iphone. I want to ...
3
votes
2answers
890 views

SD card over SDIO bus initialization problem because of failed CRC

I have a custom board based on an ST Microelectronics STM32F103VE microcontroller, with a MiniSD card plugged over the microcontroller's SDIO bus. The electrical connections were done exactly as found ...
3
votes
1answer
227 views

Detect drive letter of SD card hardware

Is there a way to programatically detect the driver letter of an SD card(s) on Windows? Does the method support internal and external SD card hardware? Thank you for your time.
3
votes
1answer
3k views

Storing data on SD Card in Android

Using the data-storage page in the docs, I've tried to store some data to the SD-Card. This is my code: // Path to write files to String path = ...
3
votes
2answers
5k views

(re)mounting the SD card on android emulator

On the emulator, I can unmount the SD card from the Settings. I can then mount it on my OS, then unmount it normally. I haven't been able to figure out how to re-mount it then on the emulator ...
3
votes
3answers
3k views

Initializing SD card in SPI issues

Sorry for the length of this question, but I thought it best to show as much detail to fend of questions asking if I had done A when I had already done A... ;-) I've had a look at the "micro-SD card ...
3
votes
1answer
628 views

How can I listen for SD card mounting in android?

I have a program that uses the SD card, so I want to be informed if the state of the card changes by registering a listener if possible. I'm aware of the Environment class and its methods, but I don't ...
3
votes
4answers
1k views

Why are my programs running from my SD card so slow?

When moving my .Net Compact Framework application to the SD-card of a Windows CE device, the program executes slower then running it from the internal memory. I thought, the start-up might be slower, ...
3
votes
6answers
4k views

SD card write performance

I am writing a little application, which is writing jpeg images at a constant rate on a SD card. I choose an EXT3 filesystem, but the same behaviour was observed with an EXT2 filesystem. My writing ...
2
votes
1answer
37 views

Is it possible to detect the presence of an USB expansion card in Linux?

I would like to write some C++ program that can detect the presence of an USB expansion card, or an SD card reader without it necessarily having anything plugged in to it. Is this possible? In Linux?
2
votes
0answers
73 views

SDHC SPI write issues

I've been trying to do an SD card interface with the LPC1766 SPI peripheral for a while and right now I'm stuck in a problem that I couldn't find the answer anywhere. The problem is: SDHC cards are ...
2
votes
2answers
91 views

Can't write file on SD-card (Is a directory)

I'm getting the following error when trying to write midi-file on the Android SD-Card: 12-14 16:22:22.219: ERROR/Thread writer(1108): java.io.FileNotFoundException: ...
2
votes
1answer
35 views

How android application detects left and right SD CARDS in adevice

if I have two physical sd cards "left user sdcard" and "right user sdcard"(as given in vold.fstab), then how will applications like filemanger, know that that there are two sdcards - "left user ...
2
votes
1answer
64 views

Forward locking an image file Android

In Android 2.2 and above,Is there any way i can prevent the (encrypted) file in the SD card from being deleted/renamed/moved? Atleast prevent that using file explorer applications like ES file ...
2
votes
5answers
224 views

Secure image storage Android

I am developing an application for Android 2.2 that lets the user purchase and download images from web server.Once he downloads these images, only this application should be able to view these ...
2
votes
1answer
54 views

Is it possible to track how many users have moved my app to SD card?

I'm interested in the analytics of how many users have moved my application to the SD card. Is there a way to determine this data? Ideally, I'd want to log an event that its been moved to the SD card ...
2
votes
2answers
221 views

Accessing Storage on the Nook

The closest thing to documentation I can find having to do with file storage is this post (see below if you can't access it), but it leaves me with several questions. I would really, really, really ...
2
votes
2answers
1k views

Android: absolute location of External sd-card

I have a very simple question but so far I am unable to find an answer of this question. "Is there any way of finding the absolute path of INTERNAL STORAGE DIRECTORY and EXTERNAL STORAGE ...
2
votes
2answers
79 views

foreign chars in file name on Android

When I try this on my SDcard in Android Phone: File outputFile = new File(path, clickedKey+".txt"); OutputStream fos = new FileOutputStream(outputFile); fos.write(data.getBytes()); fos.close(); ...
2
votes
1answer
87 views

SD Card SPI Voltage/Logic Levels

I am working on interfacing a micro-sd card with an 8-bit micro-controller. I do not yet have the hardware so I can not find the solution with an o-scope. I have been reading the Physical Layer ...
2
votes
1answer
1k views

How to open local PDF file in PhoneGap (android)

I'm trying to open a local PDF file stored in the sdcard. I tried everything possible but nothing seems to work. I tried to open the pdf using the anchor tag with external and _blank attribute. I ...

1 2 3 4 5 8