OnTouch of an ImageView I\'m starting a fade in animation:
OnTouch
ImageView
myImageView.setOnTouchListener(new View.OnTouchListener() { publ
If you only need an end-action it would suffice to use .withEndAction(Runnable)
.withEndAction(Runnable)
fadeInAnimation.withEndAction(new Runnable() { @Override public void run() { ... do stuff } })