一次超过10张图片的屏幕出现OOM错误。 我的配置:
DisplayImageOptions options = new DisplayImageOptions.Builder()
.imageScaleType(ImageScaleType.EXACTLY)
.cacheOnDisk(true)
.bitmapConfig(Bitmap.Config.RGB_565)
.cacheInMemory(false)
.build();
ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(this)
.diskCacheSize(500 * 1024 * 1024)
.threadPoolSize(5)
.build();