I have a ViewFlipper
with different views. When my activity starts I want that first view to appear suddenly, and after 3 seconds (flipper time) to animate to next view. Here is my code:
vf.setOutAnimation(animFlipOutNext);
vf.setInAnimation(animFlipInNext);
vf.startFlipping();
populate();
where vf is ViewFlipper
and the populate() method is the method where I add all my views to ViewFlipper
. My problem is that my animation starts from first view, and not from first. I don't know where should I set the animation to my ViewFlipper
for make my animation to not start from first view. Can anyone help me?
First view appears like this : I have a black screen (the color of background) before first view.
Thanks in advance!