I’m setting an ImageView using setImageBitmap with an external image url. I would like to save the image so it can be used later on even if there is no internet connection. Where and how can I save it?
I’m setting an ImageView using setImageBitmap with an external image url. I would like
Share
You have to save it in SD card or in your package data, because on runtime you only have access to these. To do that this is a good example
Source : How do I transfer an image from its URL to the SD card?