How to resize image before loading to ImageView to avoid OOM issues

后端 未结 4 1593
忘了有多久
忘了有多久 2021-01-24 04:18

How can i resize image before loading to imageview after selecting from gallery/photos?. Otherwise large images are causing OOM issues.

SelectImageGallery.setOnC         


        
4条回答
  •  故里飘歌
    2021-01-24 04:47

    As you facing OOM issue, you can remove this issue by

    1) Decrease size of bitmap and

    2) Increase size of app by changing in gradle.properties and AndroidManifest file

    gradle.properties org.gradle.jvmargs=-Xmx1536m

    Android Manifest android:largeHeap="true", android:hardwareAccelerated="true"

提交回复
热议问题