0

如何在动画结束后启动 Activity。我在 xml 中添加了 android:oneshot="true" 但是如何在这个动画停止后开始一个新的活动。我附上了下面的整个代码。请让我知道如何开始新的活动。如果我使用此代码而不显示我的动画,它将转到另一个活动。

public class MainActivity extends Activity  {

ImageView iv;
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

}
public void onWindowFocusChanged (boolean hasFocus) {
     super.onWindowFocusChanged(hasFocus);
        AnimationDrawable animation = (AnimationDrawable) iv.getBackground();

        if(hasFocus) {          
            animation.start();
                startActivity(new Intent(MainActivity.this,second.class));

        } else {
            animation.stop();

        }

    }
public void onStart() {
    {
        super.onStart();

        iv = (ImageView)findViewById(R.id.imageView1);
        iv.setBackgroundResource(R.animator.animation);

    }
}

}

4

1 回答 1

1

一种确保您可以使用的方法,并且对实现侦听器接口的方法onAnimationListener非常感兴趣。onAnimationEnd

像这样的东西:

animation.setAnimationListener(new Animation.AnimationListener() {
                @Override
                public void onAnimationStart(Animation animation) {

                }

                @Override
                public void onAnimationEnd(Animation animation) {
                startActivity(new Intent(MainActivity.this,second.class));
                }

                @Override
                public void onAnimationRepeat(Animation animation) {

                }
            });
于 2013-05-21T14:27:02.100 回答