图像从SD卡加载

时间:2013-04-09 22:10:56

标签: java android

我从我的服务器下载了大约100张图片,以便在listView中显示它们,

因此我将它们保存在我的SD卡中,我将不会收到OutOfMemoryException。

然而,我看到即使我将它们下载到SD卡,我必须将它们解码为一个占用大量内存然后显示它们的Bitmap,因此我也得到一个“OutOfMemory”异常。

有什么可以解决的吗?

非常感谢

这是我从sdcard加载图片的代码:

Bitmap bmImg = BitmapFactory.decodeFile("path of img1");
imageView.setImageBitmap(bmImg);

1 个答案:

答案 0 :(得分:2)

尝试使用此代码从文件加载图像:

 img.setImageBitmap(decodeSampledBitmapFromFile(imagePath, 1000, 700));

decodeSampledBitmapFromFile时:

public static Bitmap decodeSampledBitmapFromFile(String path, int reqWidth, int reqHeight) 
{ // BEST QUALITY MATCH

    // First decode with inJustDecodeBounds=true to check dimensions
    final BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    BitmapFactory.decodeFile(path, options);

    // Calculate inSampleSize
        // Raw height and width of image
        final int height = options.outHeight;
        final int width = options.outWidth;
        options.inPreferredConfig = Bitmap.Config.RGB_565;
        int inSampleSize = 1;

        if (height > reqHeight) {
            inSampleSize = Math.round((float)height / (float)reqHeight);
        }

        int expectedWidth = width / inSampleSize;

        if (expectedWidth > reqWidth) {
            //if(Math.round((float)width / (float)reqWidth) > inSampleSize) // If bigger SampSize..
            inSampleSize = Math.round((float)width / (float)reqWidth);
        }
    options.inSampleSize = inSampleSize;

    // Decode bitmap with inSampleSize set
    options.inJustDecodeBounds = false;

    return BitmapFactory.decodeFile(path, options);
  }

您可以使用数字(在这种情况下为1000,700)来配置图像文件输出的质量。