即使我完成活动,mediaPlayer也不会停止

发布于 2024-11-15 15:44:41 字数 196 浏览 2 评论 0原文

我所处的情况是,我有一个 ActivityGroup,其中有一个 Activity,我在其中使用 MediaPlayer 来播放音频文件。但是当我退出该 Activity 时,我试图停止 MediaPlayer,但不幸的是我无法做到这一点。因此,当我退出活动时,我尝试完成它。我能够完成该活动,但 MediaPlayer 仍然根本不停止。

我该怎么解决这个问题。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゞ花落谁相伴 2024-11-22 15:44:41

当您完成 Activity 时,MediaPlayer 不会停止,您需要在 Activity 的 onPause() 中显式调用 mMediaPlayer.stop()

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文