I can't start the alternate animation.
for (int i = 0; i < txts.size(); i++) { AnimationDrawable animationDrawable = (AnimationDrawable) txts.get(i).getBackground(); animationDrawable.setEnterFadeDuration(2000); animationDrawable.setExitFadeDuration(4000); animationDrawable.start(); try { sleep(500); } catch (Exception e) { sasha(String.valueOf(e)); } }
I tried to put this code in onStart, onCreate, onResume. First a black screen appears, i.e. waits until the loop stops and only then starts all the animations at once. Help me please.