I'm trying to start a standard frame animation in an array adapter ImageView myImage =(ImageView)proximityView.findViewById(R.id.imgMyImage);
myImage.setBackgroundResource(R.drawable.loading_animation); AnimationDrawable frameAnimation = (AnimationDrawable) myImage.getBackground(); frameAnimation.start(); I have found there are problems with invoking this in an activity create because the animation hasn't finished loading and can resolve using onWindowFocusChanged but can't work out the best way to start this animation from an adapter? -- 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

