how would I save a drawable to the SDcard (custom folder) and later retrieve it assuming im keeping track of the path of the saved item.

Thanks, Faisal

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I assume you want to download images from Internet?

You can use FileOutputStream to save the images, and you can use File.mkdirs() to create custom directory on the SD Card.

If you want to load the image later, you can use BitmapFactory.decodeFile(String pathName).

link|improve this answer
2  
However how would I do this to a drawable? – Faisal Abid Nov 2 '09 at 12:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.