I want to show a fade effect when image is loading on Imageview. I am using picasso to cache image and display in image view. I have searched alot for this but couldnt find
I do this:
Picasso.get().load(url).fit().noFade().centerInside().into(imageView, new Callback() { @Override public void onSuccess() { imageView.setAlpha(0f); imageView.animate().setDuration(200).alpha(1f).start(); } @Override public void onError(Exception e) { } });