ImageView
To load an image from a specified URL, Uri, resource id, or any other model into an ImageView:
ImageView imageView = (ImageView) findViewById(R.id.imageView);
String yourUrl = "http://www.yoururl.com/image.png";
Glide.with(context)
.load(yourUrl)
.into(imageView);...