繁体   English   中英

为什么在单击按钮时播放声音不起作用

[英]Why is this playing sound on button click method not working

我想做的是在此按钮单击上调用三种声音之一。 声音在首选项屏幕中。 在按钮上单击它也应该显示动画。 当前正在发生的事情是,我将单击该按钮,并且一切将正常进行,但是然后我停止动画并在第二次单击该按钮时发出声音。 当我再次单击该按钮以开始备份动画和声音时,我听不到声音,但是动画仍然有效。 老实说,我不知道怎么了。 这是我的代码...

public void buttonClick() {
    imgView = (ImageView) findViewById(R.id.imageView);
    button = (Button) findViewById(R.id.button);
    blade = (ImageView)findViewById(R.id.imageView4);
    final Animation animRotate = AnimationUtils.loadAnimation(this, R.anim.rotate);
    1stSound = MediaPlayer.create(this, R.raw.file.mp3);
    2ndSound = MediaPlayer.create(this, R.raw.file.mp3);
    3rdSOund = MediaPlayer.create(this, R.raw.file.mp3);

    button.setOnClickListener(

            new View.OnClickListener() {

                @Override
                public void onClick(View v) {
                    SharedPreferences getPrefs = PreferenceManager.getDefaultSharedPreferences(getBaseContext());
                    boolean option1 = getPrefs.getBoolean("alternate", false);
                    boolean option2 = getPrefs.getBoolean("white", false);
                    boolean option3 = getPrefs.getBoolean("standard",false);

                    if (blade.getAnimation() == null) {
                        // no animation, start it
                        if (option1 == true){
                            1stSound.start();
                            blade.startAnimation(animRotate);

                        } else if (option2 == true){
                            3rdSound.start();
                            blade.startAnimation(animRotate);

                        } else if (option3 == true) {
                            2ndFan.start();
                            blade.startAnimation(animRotate);

                        }

                        } else {
                            //animation is showing, stop it
                            blade.clearAnimation();
                            3rdSound.stop();
                            2ndSound.stop();
                            1stSound.stop();

                        }





                    current_image_index++;
                    current_image_index = current_image_index % images.length;
                    imgView.setImageResource(images[current_image_index]);
                    imgView.invalidate();


                }


            }
    );
}

看一下MediaPlayer状态图 调用stop()您还需要调用prepare() (或prepareAsync() )才能再次播放它。

简而言之,这样做:

3rdSound.stop();
3rdSound.prepareAsync();
2ndSound.stop();
2ndSound.prepareAsync();
1stSound.stop();
1stSound.prepareAsync();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM