Get image from url and place it in imageview – Android [duplicate]

Add Dependency

compile 'com.github.bumptech.glide:glide:3.8.0'

and

Glide.with(yourContext).load(Your Url).into(imageview);

Leave a Comment