安卓将位图保存到SD卡



我有一个按钮,我希望当我单击它时,图像会保存到SD卡中(或内部存储,例如在HTC One X中,我们没有像SD卡这样的外部存储)

这是我的代码:

            sd.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                // TODO Auto-generated method stub
                MpClick.start();
                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);
                       bitMapToShare.compress(Bitmap.CompressFormat.JPEG, 600, out);
                       out.flush();
                       out.close();
                } catch (Exception e) {
                       e.printStackTrace();
                }
            }
        });

以及如何在其中显示一条消息,上面写着"您的图像已保存"。像警报一样,但持续 2 秒然后消失

试试这个

private void SaveImage(Bitmap finalBitmap) {
   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" /> 

看看这个答案安卓将文件保存到外部存储

编辑 :使用此行,您可以在图库视图中查看保存的图像。

sendBroadcast(new Intent(
Intent.ACTION_MEDIA_MOUNTED,
        Uri.parse("file://" + Environment.getExternalStorageDirectory())));

使用 Toast 消息

喜欢

Toast.makeText(Your_class_name.this,
                    "Your image is saved to this folder", Toast.LENGTH_LONG)
                    .show();

最新更新