Out Of Memory Error When loading more images in Glide

前端 未结 11 919
我寻月下人不归
我寻月下人不归 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:36

    Using Glide doesn't guarantee no Out of Memory errors, you need to use several small steps to reduce the probability to not get OOM's.

    Step 1: Understand the caching mechanism in Glide

    Step 2: I prefer to load thumbnails into recyclerview

    Glide  
        .with( context )
        .load( UsageExampleGifAndVideos.gifUrl )
        .thumbnail( 0.1f )
        .into( imageView2 );
    

    Remember to always request small size image if bigger or HD images are not required.

提交回复
热议问题