开发者

mediaPlayer won't stop even if I finish the activity

开发者 https://www.devze.com 2023-03-12 18:05 出处:网络
I am in a situation where I have an ActivityGroup and开发者_运维知识库 inside of which I have an Activity in which I have used MediaPlayer to play an audio file. But when I navigate out of that Activi

I am in a situation where I have an ActivityGroup and开发者_运维知识库 inside of which I have an Activity in which I have used MediaPlayer to play an audio file. But when I navigate out of that Activity I am trying to stop the MediaPlayer, but unfortunately I was not able to do it. So I tried finishing my activity when I navigate out of it. I am able to finish the activity but still MediaPlayer doesn't stop at all.

How should I solve this.


MediaPlayer won't stop when you finish your activity, you need to explicitly call mMediaPlayer.stop() in your activity's onPause().

0

精彩评论

暂无评论...
验证码 换一张
取 消