How can I save an images to the SD card that I retrieve from the image's URL?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
First you must make sure your application has permission to write to the sdcard. To do this you need to add the uses permission write external storage in your applications manifest file. See Setting Android Permissions Then you can you can download the URL to a file on the sdcard. A simple way is:
EDIT : Put permission in manifest
|
|||||||||||||||||
|
|
An excellent example can be found in the latest post on Android developer's blog:
|
||||
|
