I set a sound when I check the button
public void Button(View v) {
final MediaPlayer mpStart = MediaPlayer.create(this, R.raw.startsound);
mpStart.start();
}
I want to wait some time before the sound starts. How can i do?