我正在利用以下手段在纽扣地上打上音响:
final MediaPlayer buttonSound = MediaPlayer.create(menu.this, R.raw.button_sound);
info.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
buttonSound.start();
Is it possible to add code that allows the button to play a sound, then wait for a second, and then play another sound file? What I am really asking is how I can play multiple CONSECUTIVE sound files! I need them to be played one at a time with a pause! I am working on a personal reading app for my son and would be so grateful for advice/help.