MediaPlayer error: pause called in state 64

前端 未结 5 1154
醉话见心
醉话见心 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:18

    I used pause and seekto method to reset the player.

    player.pause();
    player.seekTo(0);
    

提交回复
热议问题