How to make smooth frame animation in android?
I made a frame animation. But the transitition between images is bad looking. How can I apply a crossfade effect to it ? When using TransitionDrawable i get the proper result but it stops after one execution. Any one has an idea how to resolve it? public void startAnimation() { if (logoAnimation != null) { if (logoAnimation.isRunning()) { logoAnimation.stop(); } logoAnimation.start(); } } private int setLogoAnimation(int animationID, int targetID) { imageView = (ImageView) window.findViewById(targetID); imageView.setImageResource(animationID); logoAnimation = (AnimationDrawable) imageView