So I want my animation to start as soon as the activity is created, but for some reason no matter what I try will get it to start. I can get it to start by having a click event but I want it to start all on its own.

Here's what I have and how do I get this to work?

package tween.learn;

import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.widget.ImageView;

public class Animate extends Activity {

    public ImageView image;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);


        ImageView tweenImage = (ImageView) findViewById(R.id.imageView1);
        tweenImage.setBackgroundResource(R.anim.cubicfacetween);

        AnimationDrawable frameAnimation = 
                           (AnimationDrawable) tweenImage.getBackground();
        frameAnimation.start();

        }



}

Thanks

link|improve this question

43% accept rate
feedback

3 Answers

I think you have to start the animation after initialization of the view in question is complete. You should be able to do something like:

final ImageView tweenImage = (ImageView) findViewById(R.id.imageView1);
tweenImage.setBackgroundResource(R.anim.cubicfacetween);      
tweenImage.post(new Runnable() {
    @Override
    public void run() {
        AnimationDrawable frameAnimation =
            (AnimationDrawable) tweenImage.getBackground();
        frameAnimation.start();
    }
}

Edit - this question led me to believe that the onWindowFocusChanged method won't always work. It does seem simpler and is probably a better idea if it works for you.

link|improve this answer
2  
this does the trick, I want to kick the writer of the frame-animation docs in the nuts right about now... – schwiz May 5 '11 at 2:13
2  
WTH! THis works perfectly, but the "official" documentation doesn't work worth doodoo. Thanks Matthew Willis. – Anthony Honciano Dec 28 '11 at 5:30
I wanted the ImageView's scaling to have effect too, so instead of the background I used the src by replacing setBackground() and getBackground() with setImageResource() and getImageResource(). – James Wald Apr 27 at 0:20
feedback

Try starting your animation after the window gets focus by overriding onWindowFocusChanged in your Activity:

  @Override
  public void onWindowFocusChanged (boolean hasFocus)
  {
      //Start animation here
  }

See docs here: http://developer.android.com/reference/android/app/Activity.html#onWindowFocusChanged%28boolean%29

link|improve this answer
feedback

My solution for playing animations while they are visible. It let you declare (in xml layout) and forget.

class AnimatedImageView extends ImageView {
    // required constructors omitted for clarity 

    private void updateAnimationsState() {
        boolean running = getVisibility() == View.VISIBLE && hasWindowFocus();
        updateAnimationState(getDrawable(), running);
        updateAnimationState(getBackground(), running);
    }

    private void updateAnimationState(Drawable drawable, boolean running) {
        if(drawable instanceof AnimationDrawable) {
            AnimationDrawable animationDrawable = (AnimationDrawable) drawable;
            if(running) {
                animationDrawable.start();
            } else {
                animationDrawable.stop();
            }
        }
    }

    @Override
    protected void onVisibilityChanged(View changedView, int visibility) {
        super.onVisibilityChanged(changedView, visibility);
        updateAnimationsState();
    }

    @Override
    public void onWindowFocusChanged(boolean hasWindowFocus) {
        super.onWindowFocusChanged(hasWindowFocus);
        updateAnimationsState();
    }
}

If you setup drawable from code, then you should override appropriate set*() methods and call updateAnimationsState() from there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.