I am using a MediaPlayer
in my Activity
.
When I hit the back button, I get this error:
09-20 19:44:16.540: E/MediaPlayer(18
I have come here looking for answers, though the responses above were useful in other things, they did not solve my problem...
BUT ... I managed to fix the problem:
changing
mediaPlayer.stop();
to
mediaPlayer.reset();
helped me get rid off the error( -38 , 0 )
thanks again for pointing out the problem :)