Here is how to load an image or photo into an imageview easily using glide
This is one of my apps using glide to load images online
Glide is an image loading library for Android. Using glide, you can easily load an online image to your ImageView in Android
Here is the example
Glide.with(this)
.load("put direct link of image here").apply(new RequestOptions()
.diskCacheStrategy(DiskCacheStrategy.NONE)
.skipMemoryCache(true))
.into(imageView);