Saving Bitmap From Fragment To Internal/external Storage
I was getting the following exception while Saving bitmap from fragment to internal/external storage 11-28 12:09:18.667: W/System.err(2620): java.io.FileNotFoundException: /storage
Solution 1:
I think you are already deleting the file after creating it and then you are trying to convert the non-exists file into the bitmap which is not valid. That is why you are getting an error no such file or directory found.
Just remove the line file.delete();
from your code and try out.
Post a Comment for "Saving Bitmap From Fragment To Internal/external Storage"