Out Of Memory Error When loading more images in Glide

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

    1. Make sure the ImageView has match_parent or fixed dp as dimensions wrap_content makes Glide load full resolution Bitmaps.
    2. .placeholder() shows an image instead of empty space while loading large bitmap
    3. .thumbnail(float) loads a downsampled version fast while the bigger image is loading in the background
    4. Also look around the Glide issues, maybe you find something helpful.

提交回复
热议问题