Use picasso.setIndicatorsEnabled(false)
Picasso.with(mContext) .load(url) .networkPolicy(NetworkPolicy.OFFLINE) .setIndicatorsEnabled(false) .fit().centerInside().placeholder(null) .into(imgView, new Callback() { @Override public void onSuccess() { } @Override public void onError() { Picasso.with(mContext) .load(url) .fit().centerInside() .into(imgView, new Callback() { @Override public void onSuccess() { } @Override public void onError() { } }); } });
The color indicates the source of the displayed image.
Color
Red indicates that the image is selected from the network .
Color
Green indicates that the image is being retrieved from the cache .
Color
Blue indicates that the image is being ejected from disk .
source share