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
|
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 | |||
|
feedback
|
|
Consider using scale for ImageView, and don't bother about resizing. You can scale an image like this, for example:
| |||||
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:
| ||||
|
feedback
|
|
we can resize the existing bitmap to any size using bitmap.createScaledBitmap use the below code.
| |||
|
feedback
|
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