0

我在将图像加载为位图时遇到问题,因此我使用以下方法:

"decodeSampledBitmapFromFile"

(包括实施)

我还将所有位图保存在 SdCard 上,每次我需要位图时,我都会从它与参数一起存储的路径中加载它:

decodeSampledBitmapFromFile(path,150,100);



Bitmap image_profile =decodeSampledBitmapFromFile(path,150,100);

并将图像位图设置到我需要的 imageView 中(每次我需要图像时,我都会从 sdCard 加载它。

但是,在加载大约 20 张图像后,我仍然会收到 OutOfMemoryException。

那么,OutOfMemoryException 的解决方案是什么?

为什么即使在加载少量图像(大约 20 个)后我也会得到 OutOfMemoryException?

他们成功的 facebook、instagram 或 youtube 等应用程序的秘诀是什么

加载大量图像而没有异常?

我尝试了一切,但我仍然得到异常。

anyOne 有进一步的建议,为了避免这种异常,我可以实施什么?

多谢

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);
      }
4

1 回答 1

0

您可能正在加载图像,然后它们没有被垃圾收集器回收或收集,因此它们仍在占用内存。

由于听起来您一次只使用一个图像,我想您可以尝试手动删除对不再需要的位图的引用,然后调用System.gc()以释放内存?

如果没有,我会研究 LruCache。

谷歌有一个很好的教程:http: //developer.android.com/reference/android/util/LruCache.html

当我第一次为我的游戏使用 LruCache 时,本教程也帮助了我:http: //andrewbrobinson.com/2012/03/05/image-caching-in-android/

于 2013-04-21T20:09:42.977 回答