I have a ViewFlipper
with different views. When my activity begins, I want this first view to appear suddenly, and after 3 seconds (flipper time) to animate to go to the next view. Here is my code:
vf.setOutAnimation(animFlipOutNext); vf.setInAnimation(animFlipInNext); vf.startFlipping(); populate();
where vf is the ViewFlipper
and the populate () method is the method in which I add all my views to the ViewFlipper
. My problem is that my animation starts from the first view, not the first. I donβt know where to install the animation on the ViewFlipper
so that the animation does not start at a glance. Can anybody help me?
The first view is as follows:
I have a black screen (background color) before the first view.
Thanks in advance!
source share