I have a lot of doubts about the treatment of the images in android, and I was hoping to see if you could solve them.
At this point I have an image that occupies 320
you have to do the following with your imageview :
and this with your glide :
Glide.with(getBaseContext()) .load(path) //.placeholder(R.drawable.drawable) .error(R.drawable.noimg) .animate(R.anim.animation_fade_in) .into(mImageView);
This works perfectly with me .