High resolution image not display in ImageView Android

后端 未结 5 1020
小鲜肉
小鲜肉 2021-01-07 03:13

I am displaying an image in full screen mode,but whenever going to display large image then nothing display in the image view. Below code try to resize bitmap but got same r

5条回答
  •  -上瘾入骨i
    2021-01-07 03:57

    Probably the image size is too large that the system cannot allocate enough memory to load it.

    you can try loading your image after scaling it it with BitmapFactory.Options sampleSize

    check this link for more info http://developer.android.com/training/displaying-bitmaps/load-bitmap.html

提交回复
热议问题