Loading Image into ImageView with Glide

set android:adjustViewBounds="true" for your ImageView in the code


Try this set Image url.

 Glide.with(getBaseContext())
.load("Your image url parse this place")
                .thumbnail(0.1f)
                .into(img_glide);