Out Of Memory Error When loading more images in Glide

前端 未结 11 911
我寻月下人不归
我寻月下人不归 2020-12-31 06:32

Edited:

  • In my application, I am loading more than 300 images in home page. I used glide to load images. I\'m getting Out of
11条回答
  •  醉梦人生
    2020-12-31 06:53

    I faced the same issue and solved it by adding android:largeHeap="true" in the application tag of my manifest file like below.

    
       ...
       
       ....
       
    
    

    NB: this should be your last option, as using largeHeap:true is not recommended for solving simple OOM problems.

提交回复
热议问题