I am trying to load an image
into an ImageView
using picasso
. The code is given below:
Picasso.with(this)
.load(imageURL)
.placeholder(drawable1)
.error(drawable1)
.into(imageview)
Now here while picasso is waiting for the download to complete, the imageview
goes blank. To prevent that I want to fade out the current image to a drawable and then to load the image present in the URL. Is there any way to do this?