I have been trying to find the answer to this question for 3 days now. I am developing a game. And as one progresses in levels, I want to AlphAnimate each of my imageviews. So I have an array list of imageviews.
For iterator i current_game.next() { AlphaAnimation anim = new AlphaAnimation(0.0,1.0) anim.setDuration(500); i.startAnimation( anim ); } I want the animation to complete then start the next one, but what is happening is they are all being animated at the same time. Please help! Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en