【发布时间】:2012-01-22 14:11:16
【问题描述】:
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();
我已经尝试了很多东西,但这是最近的,但这甚至不起作用
【问题讨论】: