In my app, i have to download one image from the url. I have to preview that image in my app and i have to share the image using explicit intent. I have faced two issues as follows:
I don't want to store the image in external storage. So what are the other options than sharedpreferences? (Since shared preference is very slow to decode and encode image). Is caching is good? If it is good how can i achieve it?
Bitmaps cannot be send explicitly to other apps through intents.(I am talking about share image feature in my app). So what are the other possible options for that?