I created an app,where i need to load images in feed(recyclerview), but sometimes glide shows only part of image
Thanks for the report, can you please provide more information based on the guidelines. You can click on the issue template link and edit the above comment based on the template.
Please feel free to re-open when you get the chance to fill out the issue template, thanks!
I am facing the same problem.
Glide Version : com.github.bumptech.glide:glide:3.8.0
Device : Nexus 5x OS: 8.1.0
Code I Used:
mGlide = Glide.with(view.getContext());
mGlide.load(imgFile).error(placeHolderResDrawable).dontAnimate().diskCacheStrategy(DiskCacheStrategy.NONE)
.fitCenter().into(this);

Most helpful comment
I am facing the same problem.
Glide Version : com.github.bumptech.glide:glide:3.8.0
Device : Nexus 5x OS: 8.1.0
Code I Used:
mGlide = Glide.with(view.getContext()); mGlide.load(imgFile).error(placeHolderResDrawable).dontAnimate().diskCacheStrategy(DiskCacheStrategy.NONE) .fitCenter().into(this);