I have a list of images(around 10) in my \"image_list.xml\" under \"animation-list\" specified with \"item\". And I have made one \"fade_in.xml\" file for fade in effect of the
Add enter and exit fade duration before start AnimationDrawable
AnimationDrawable splashAnimation = ((AnimationDrawable) iv.getBackground()); splashAnimation .setEnterFadeDuration(500); splashAnimation .setExitFadeDuration(500); animDrawable.start();
It Works for me.
Happy Coding