I am developing a simple game in Android. I want to add sound effects for each of the touch events. However I have add background sound effect that runs throughout the game
Just do the following ...
MediaPlayer mp = MediaPlayer.create(getApplicationContext(), R.raw.combo); mp.start();
I found it at How to play a Sound Effect in Android