0

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

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

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

有什么要处理的吗?

多谢

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

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

1 回答 1

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)来配置图像文件的输出质量。

于 2013-04-09T22:21:01.697 回答