我的Android应用程序应该在我的设备的SD卡上保存颜料和背景图像。我在我的视图类中使用下面的方法,但由于某种原因SD卡只保存颜料。我无法弄清楚为什么背景图片没有保存。
File myDir=new File("/sdcard/saved_images");
myDir.mkdirs();
Random generator = new Random();
int n = 10000;
n = generator.nextInt(n);
String fname = "Image-"+ n +".jpg";
File file = new File (myDir, fname);
if (file.exists ()) file.delete ();
try {
FileOutputStream out = new FileOutputStream(file);
mBitmap.compress(Bitmap.CompressFormat.JPEG, 90, out);
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
这是我试图保存背景的地方,但它不起作用。任何想法都将不胜感激。