Android 将位图保存到 SD 卡
Posted
技术标签:
【中文标题】Android 将位图保存到 SD 卡【英文标题】:Android saving Bitmap to SD card 【发布时间】:2012-08-04 11:25:59 【问题描述】:我有一个按钮, 我希望当我点击它时,图像会保存到 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 秒然后消失
【问题讨论】:
Toast.makeText(this, R.string.your_message, Toast.LENGTH_SHORT).show(); 怎么样 android saving file to external storage的可能重复 【参考方案1】:试试这个
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" />
看这个答案Android saving file to external storage
EDIT:通过使用此行,您可以在图库视图中查看已保存的图像。
sendBroadcast(new Intent(
Intent.ACTION_MEDIA_MOUNTED,
Uri.parse("file://" + Environment.getExternalStorageDirectory())));
【讨论】:
它工作得很好,只有一个问题是相册“saved_images”没有出现在画廊中,但使用文件管理器我可以看到它创建了一个文件夹“saved_images”并在其中保存了我保存的图像..如何制作,保存在图库中 @AhmedAl-ekrii 您可能正在模拟器上进行测试,并且模拟器更新缓慢。在进入画廊之前使用媒体触发器。你会在那里找到指定的文件夹。 不,我正在使用我的手机 HTC One X .. 使用媒体触发器是什么意思? (我是首发,对不起) 没关系,问题是任何面临我问题的人的画廊缓存,使用此代码,它将起作用 sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file:// "+ Environment.getExternalStorageDirectory()))); 最好使用日期戳而不是随机数,以避免重复。【参考方案2】:使用祝酒词
喜欢
Toast.makeText(Your_class_name.this,
"Your image is saved to this folder", Toast.LENGTH_LONG)
.show();
【讨论】:
以上是关于Android 将位图保存到 SD 卡的主要内容,如果未能解决你的问题,请参考以下文章