I have an image URL. I want to display an image from this URL in an ImageView but I am unable to do that.
How can this be achieved?
Try this add picasso lib jar file
Picasso.with(context) .load(ImageURL) .resize(width,height).noFade().into(imageView);