Game Sound effects in Android

前端 未结 3 2059
梦谈多话
梦谈多话 2020-12-23 23:45

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

3条回答
  •  不思量自难忘°
    2020-12-24 00:06

    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

提交回复
热议问题