好的,所以我有画廊应用程序,里面有很多图像(res/drawable)。
在选择时,您可以设置为墙纸按钮,您将拥有它。
现在我想用按钮保存到手机或 SD 卡这个选择的图像。我该如何管理。从应用程序文件夹的 res 复制到手机或 SD 卡。不想从 ImageView 中获取它,而只是将原件从 res 复制到 Phone。
试试这个代码:
String root = Environment.getExternalStorageDirectory().toString();
File myDir = new File(root + "/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);
finalBitmap.compress(Bitmap.CompressFormat.JPEG, 90, out);
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
并在清单文件中添加:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
按照步骤 :-
Bitmap
使用 BitmapFactory.decodeResource创建OutputStream
使用Bitmap.compress将 Bitmap 的内容写入代码:
String path = Environment.getExternalStorageDirectory().toString();
OutputStream fOut = null;
file = new File(path, "image.jpg");
fOut = new FileOutputStream(file);
Bitmap bitmap = BitmapFactory.decodeResource (getResources(), R.drawable.xyz);
bitmap.compress(Bitmap.CompressFormat.JPEG, 85, fOut);
fOut.flush();
fOut.close();
MediaStore.Images.Media.insertImage(getContentResolver(),file.getAbsolutePath(),file.getName(),file.getName());