gpt4 book ai didi

java - 通过同时点击不同的按钮来播放和停止声音

转载 作者:行者123 更新时间:2023-12-01 18:41:27 25 4
gpt4 key购买 nike

我尝试使用以下代码。我的应用程序是一个 child 学习应用程序,我在那里设置了很多声音。单击一个按钮时,它正在播放,但同时,在第一个声音结束之前单击另一个按钮不起作用。我想释放第一个声音,同时按下另一个按钮。

public void soreo (View v){
Button button = (Button)findViewById(R.id.Soreo);
final Animation myAnim = AnimationUtils.loadAnimation(this, R.anim.bounce);
button.startAnimation(myAnim);
if (player == null){
player = MediaPlayer.create(this, R.raw.soreo);
player.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mp) {
stopPlayer();
}
});
}
player.start();
}

public void sorea (View v){
Button button = (Button)findViewById(R.id.Sorea);
final Animation myAnim = AnimationUtils.loadAnimation(this, R.anim.bounce);
button.startAnimation(myAnim);
if (player == null){
player = MediaPlayer.create(this, R.raw.sorea);
player.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mp) {
stopPlayer();
}
});
}
player.start();
}

public void stopPlayer (){
if (player!=null){
player.stop();
player.reset();
player.release();
player=null;
}
}

@Override
protected void onStop (){
super.onStop();
stopPlayer();
}

您能否编辑并解释一下我将如何解决该问题?谢谢。

最佳答案

我建议每次单击按钮时停止播放器。您可以考虑以下实现。

public void sorea (View v){
Button button = (Button) findViewById(R.id.Sorea);
final Animation myAnim = AnimationUtils.loadAnimation(this, R.anim.bounce);

stopPlayer(); // Call StopPlayer here

button.startAnimation(myAnim);
if (player == null){
player = MediaPlayer.create(this, R.raw.sorea);
player.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mp) {
stopPlayer();
}
});
}
player.start();
}

关于java - 通过同时点击不同的按钮来播放和停止声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59925129/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com