I am trying to set an Imageview to a URL.
Below is my code
protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stu
Use Glide
Implementation 'com.github.bumptech.glide:glide:4.2.0'
'com.github.bumptech.glide:glide:4.2.0'
Or
in java
Glide.with(getApplicationContext()) .load(image) .into(imageView);