I have this method

public void animate(ImageView image, int iTime){
                AnimationDrawable frameAnimation=new AnimationDrawable();
                Drawable anim1 = 
image.getResources().getDrawable(R.drawable.thing);
                Drawable anim2 = image.getResources().getDrawable
(R.drawable.thing2);
                frameAnimation.addFrame(anim1, iTime);
                frameAnimation.addFrame(anim2, iTime);
                image.setImageDrawable(frameAnimation);
                frameAnimation.start();
        }

I have 3 ImageViews.. that I want to have the animation all run at the
same time.. This method changes the image on an ImageView object...
however I want to change the image on 3 ImageView objects all at the
same time.

I have not been able to find any good information out there on if this
is possible.. and how to do it. Any help would be great! Thanks

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to