I have a 300 x 355 image that is only 50 kb in size. I am trying to decode it with the below code:
Bitmap bm = BitmapFactory.decodeResource(getResources(), drawableId)
.copy(Bitmap.Config.ARGB_8888, true);
According the logcat 10674000 bytes is trying to be allocated. Why so many? The image is only 50 kb.