I do not quite understand why there is a delay between the button click and sound.
Following is my code
button = (Button) findViewById(R.id.playBtn);
final MediaPlayer playButtonClick = MediaPlayer.create(this, R.raw.buttonsound);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
playButtonClick.start();
Intent browserIntent =
new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);
}
});
Is there anyway I can reduce the delay?