MediaPlayer error: pause called in state 64

前端 未结 5 1145
醉话见心
醉话见心 2020-12-30 05:30

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         


        
5条回答
  •  春和景丽
    2020-12-30 06:06

    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 :)

提交回复
热议问题