android如何下载1mb图像文件并设置为ImageView

时间:2011-06-13 08:14:39

标签: android image memory-management

我正在尝试下载1mb图像文件,然后保存到位图以填充图像视图。 但显示错误

06-13 13:39:48.149: ERROR/AndroidRuntime(1782):
java.lang.OutOfMemoryError: bitmap size exceeds VM budget

如何下​​载大图?

1 个答案:

答案 0 :(得分:3)

我遇到过同样的问题。在将下载的位图设置为ImageView之前,您必须根据ImageView的宽度和高度压缩位图。

你必须像这样创建一个缩放的位图,

 bm1=Bitmap.createScaledBitmap(bm, 300, 300,true);
imgView.setImageBitmap(bm1);

或像这样压缩你的位图,

            OutputStream fOut = null;
                        File file = new File(strDirectoy,imgname);
                            fOut = new FileOutputStream(file);

                        bm1.compress(Bitmap.CompressFormat.JPEG, 85, fOut);
                            fOut.flush();
                            fOut.close();

                MediaStore.Images.Media.insertImage(getContentResolver(),file.getAbsolutePath(),file.getName(),file.getName());