Out Of Memory Error When loading more images in Glide
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
-
2020-12-31 06:49
- Make sure the ImageView has match_parent or fixed dp as dimensions
wrap_content makes Glide load full resolution Bitmaps.
- .placeholder() shows an image instead of empty space while loading large bitmap
- .thumbnail(float) loads a downsampled version fast while the bigger image is loading in the background
- Also look around the Glide issues, maybe you find something helpful.