I'm currently developing a simple game and now it's time to add music and sound effect. I tried using MediaPlayer
, just like described here: Android media player bug
However I have another problem, the MediaPlayer
stop playing the music after about 5 seconds. What is probable causing this?
I had this problem too. It was probably due to having the MediaPlayer-object only existing within a method.
For example:
It is most likely that the garbage collector will come in and clean away the MediaPlayer-object.
This fixed the error for me: