I have a problem to save Bitmaps into files. My method is like this:
private File savebitmap(Bitmap bmp) { String extStorageDirectory = Environment.getEx
You can't write like this
File file = new File(bmp + ".png");
and this line is also wrong
file = new File(extStorageDirectory, bmp + ".png");
You have to give string value and not bitmap.
File file = new File(filename + ".png");