gpt4 book ai didi

android - 我想在android中一个接一个地在背景中播放两个声音

转载 作者:行者123 更新时间:2023-11-30 04:23:11 25 4
gpt4 key购买 nike

dogIntroSound =  MediaPlayer.create(AnimalPiker1.this, R.raw.introdog);
dogIntroSound.start();

Thread timer = new Thread(){
public void run(){
try{
sleep(5000);
} catch (InterruptedException e){
e.printStackTrace();
}finally{
dogSound = MediaPlayer.create(AnimalPiker1.this, R.raw.dog);
dogSound.start();

}
}
};

timer.start();

我已经尝试了很多东西,但这是最新的,但它甚至不起作用

最佳答案

使用 setOnCompletionListener:

dogIntroSound =  MediaPlayer.create(AnimalPiker1.this, R.raw.introdog);
dogIntroSound.setOnCompletionListener(new OnCompletionListener() {

public void onCompletion(MediaPlayer mp) {
dogSound = MediaPlayer.create(AnimalPiker1.this, R.raw.dog);
dogSound.start();
}

});

dogIntroSound.start();

关于android - 我想在android中一个接一个地在背景中播放两个声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8958989/

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