i have a simple question: Should i resize a bigger bitmap before adding to a ImageView or let the ImageView resize the Bitmap? What's the right way, regarding performance?

Thanks

link|improve this question
Are you scaling to a fixed pixel size (i.e,. px), or a density/scale independent (i.e. dp/sp) size? – Richard Ev Sep 1 '11 at 10:53
To dip's. I've forgotten to say that the Bitmap is only a little bit bigger than the ImageViews height/width, about 10%. – Benjamin Sep 1 '11 at 12:09
If it's only a little bit bigger, just use setScaleType. If it were an order of magnitude bigger, I'd recommend scaling down during/after loading and discarding the original. – Dave Sep 1 '11 at 12:49
Ok, i've just tested it. The images (loaded from web, 134px*134px) are optimized for a 240dpi density. So on 240dpi devices the image will not be scaled, it is perfect. On 160dpi devices it will be scaled about 66% (89px*89px) and on 120dpi devices 100% (67px*67px). It's not critical, right? – Benjamin Sep 1 '11 at 13:23
feedback

3 Answers

up vote 6 down vote accepted

Consider using scale for ImageView, and don't bother about resizing. You can scale an image like this, for example:

image.setAdjustViewBounds(true);
image.setMaxHeight(50);
image.setMaxWidth(50);
image.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
link|improve this answer
If the image was 1000 x 1000, and you wanted it 50x50, is this really the best way? Seems inefficient to me. – Ricky Sep 1 '11 at 10:58
well if you crop the image or resize it you might loose it's quality so scaling is the best way to do it and keep the quality high. – Arkde Sep 1 '11 at 11:39
feedback

The bigger the image, the bigger the size, I wouldn't think performance would really be affected but keep things efficient.

You could also place different size images in the different folders for different resolutions:

res/drawable-mdpi/my_icon.png        // bitmap for medium density
res/drawable-hdpi/my_icon.png        // bitmap for high density
res/drawable-xhdpi/my_icon.png       // bitmap for extra high density

Supporting different size screens

link|improve this answer
feedback

we can resize the existing bitmap to any size using bitmap.createScaledBitmap use the below code.

bmp=Bitmap.createScaledBitmap(bmp,destBitmapWith, destBitmapHeight,true);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.