In a certain ScrollView, we want to display multiple (>25) ImageViews. Each of these ImageViews has to hold a separate Bitmap that was loaded from the sd-card.
You can guess what will happen:
03-23 16:33:04.561: E/dalvikvm-heap(28310): 90000-byte external allocation too large for this process.
03-23 16:33:04.561: E/dalvikvm(28310): Out of memory: Heap Size=6151KB, Allocated=3491KB, Bitmap Size=26917KB, Limit=32768KB
We tried recycling the Bitmaps, but that will result in the "cannot display disposed Bitmap"-error for an ImageView. OpenGL might be an option of course, but we'd rather do it without =) Does anyone know how the build-in gallery on Android shows all your pictures without giving overflows?
The question becomes: Is there any way to display a lot of Bitmaps in multiple ImageViews?
Cheers!
EDIT:
As requested the code so far. (Well, the useful part).
All variables / Views etc. are created above this piece of code if they are not in this snippet ;) The method is only called during initialization obviously. When onDestroy() is called (or onStop()) all Bitmaps are recycled. They will be loaded again when needed. Loading is done asynch; a loading animation is displayed in the meantime. (Which will be stopped and removed when the Bitmap is loaded.)
for (ImageObject imageObject : images)
{
// previous row is full
if (currentWidth >= maxImagesPerRow)
{
// add that row to the main view
view.addView(linearLayout);
// and start a new empty row
linearLayout = createEmptyRowLayout();
currentWidth = 0;
}
// create an ImageView with the correct image source
ImageView iv = new ImageView(CollectionActivity.this);
iv.setId((int) imageObject.getId());
iv.setLayoutParams(new LayoutParams(realImageWidth + 2*imagePadding, realImageWidth + 2*imagePadding));
iv.setPadding(imagePadding, imagePadding, imagePadding, imagePadding);
iv.setScaleType(ScaleType.FIT_CENTER);
iv.setOnClickListener( *some onClickListener* );
// This bmp is recycled when the activity is destroyed
// It is a Bitmap resized to the needed size.
iv.setImageBitmap(imageObject.bmp_collection);
iv.setColorFilter(imageObject.tint.toColor());
// add this image to the current row (which cannot be full)
linearLayout.addView(iv);
currentWidth++;
}
// If the row is not full, add (a) transparent image(s)
while (currentWidth < maxImagesPerRow)
{
* (add 1 empty image; 1x1 transparent pixel from resources) *
linearLayout.addView(iv);
currentWidth++;
}
view.addView(linearLayout);