0

クリックすると回転し、を使用して新しいアクティビティを開始するアタッチメントがありRotateAnimationます。ImageButtonOnAnimationEnd

問題はそれが機能していないことです。アプリケーションを閉じて戻った後、私は内部にいて、new Activity(..)戻ったときにアニメーションが実行されます。アニメーションを実行してから、新しいアクティビティを開始します。

何らかの理由で、同じコードを使用する前は完全に正常に機能していましたが、私にはわかりません。些細な変更が影響した可能性があります。

これがコードです

 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState); 
    this.requestWindowFeature(Window.FEATURE_NO_TITLE);         
     setContentView(R.layout.menu);
    ImageButton amazingPicsButton = (ImageButton) findViewById(R.id.amazingPics),              
   setViewOnClick(amazingPicsButton, new Intent("com.jasfiddle.AmazingInterface.AMAZINGPICS"));     
}
/**
 * Generic OnClick setter method for giving various View objects a click listener
 * @param b
 * @param intent
 */
private <B> void setViewOnClick(B b, final Intent intent){
    ((View) b).setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

            amazingPicsSound = createRandButSound();
            amazingPicsSound.start();
            rotateAndNewActivity(v, intent);

        }
    });         

}


/** function that produces rotation animation on the View v.
 * Could be applied to button, ImageView, ImageButton, etc.
 */
private void rotateAndNewActivity(View v, final Intent intent){
    // Create an animation instance
    Animation an = new RotateAnimation(30, 360, v.getWidth()/2, v.getHeight()/2);
    an.setDuration(50);               // duration in ms
    an.setRepeatCount(3);                // -1 = infinite repeate

    /*we override the Animation an object to include the start of an new Activity
    at the end of animation */
     an.setAnimationListener(new AnimationListener(){
        @Override
        public void onAnimationStart(Animation animation) {
            // TODO Auto-generated method stub
        }
        @Override
        public void onAnimationRepeat(Animation animation) {
            // TODO Auto-generated method stub  
        }

        //start the activity onAnimationEnd
        @Override
        public void onAnimationEnd(Animation animation) {
            // TODO Auto-generated method stub
            startActivity(intent);
        }       
     });
    // Set the animation's parameters


    v.setAnimation(an);

}
4

1 に答える 1

4

setAnimationで再生する次のアニメーションのみを設定しViewます。アニメーションをすぐに開始するには、startAnimation

あなたの場合、使用しますv.startAnimation(an);

于 2012-06-21T07:31:09.777 に答える