1

アニメーション化された ImageView をクリックすると、実行中に ObjectAnimation を停止したいと考えています。次に、その ImageView で FrameAnimation を再生します。その後、最初のアニメーションが再び開始されます。

ここで私の OnClickListener:

OnClickListener click = new OnClickListener() {
            @Override
                public void onClick(View arg0) {


                try {
                    animator.wait(1000);
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }


                setFrameAnimation(view);


            }
        };

        view.setOnClickListener(click);

Animator は ObjectAnimator Animation です。
ビューは私のImageViewです

私の setFrameAnimation-method:

AnimationDrawable frameAnimation = (AnimationDrawable)view.Background();
frameAnimation.start();

このコードは機能しません。wait() を呼び出すと IllegalMonitorStateException が発生します。

4

1 に答える 1

1
Use this 


int duration = 150;
        img = (ImageView)findViewById(R.id.imageView1);

        BitmapDrawable frame1 = 
            (BitmapDrawable)getResources().getDrawable(R.drawable.y1);
        BitmapDrawable frame2 = 
            (BitmapDrawable)getResources().getDrawable(R.drawable.y2);
        BitmapDrawable frame3 = 
            (BitmapDrawable)getResources().getDrawable(R.drawable.y3);
        BitmapDrawable frame4 = 
            (BitmapDrawable)getResources().getDrawable(R.drawable.y4);
        BitmapDrawable frame5 = 
            (BitmapDrawable)getResources().getDrawable(R.drawable.y5);


        animation = new AnimationDrawable();

        animation.addFrame(frame1, duration);
        animation.addFrame(frame2, duration);
        animation.addFrame(frame3, duration);
        animation.addFrame(frame4, duration);
        animation.addFrame(frame5, duration);
//        animation.addFrame(frame6, duration);
//        animation.addFrame(frame7, duration);
//        animation.addFrame(frame8, duration);
//        animation.addFrame(frame9, duration);
//        animation.addFrame(frame10, duration);


  img.post(new Runnable() {

        @Override
        public void run() {
            // TODO Auto-generated method stub
             animation.setOneShot(false);
                img.setBackgroundDrawable(animation);
                animation.start();
        }
    });



        btnStart = (Button)findViewById(R.id.btnStart);
        btnStop = (Button)findViewById(R.id.btnStop);

        btnStart.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                animation.start();
            }
        });

        btnStop.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                animation.stop();
            }
        });
于 2013-08-07T13:09:36.490 に答える