Picasso.with(this)
.load(myURL)
.into(new Target() {
@Override
public void onBitmapLoaded(final Bitmap bitmap, Picasso.LoadedFrom from) {
customView.setImage(bitmap);
}
});