我用相机拍摄图像并将其存储在 sd 卡中,存储的图像必须从 sd 卡上传到 imageView,如下所示:
myBitmap = BitmapFactory.decodeFile(file.getAbsolutePath());
ImageView _image=(ImageView)view.findViewById(R.id.imageCarte);
_image.setImageBitmap(myBitmap);
但我有这个错误:
05-05 08:23:20.593:E/AndroidRuntime(1936):原因:java.lang.OutOfMemoryError:位图大小超出 VM 预算。
谁能帮我。谢谢