Android:如何监听 MediaPlayer 事件,例如音乐播放/停止?

发布于 2025-01-06 11:59:13 字数 103 浏览 1 评论 0原文

是否存在广播接收器操作来监听媒体播放器事件,例如检测音乐开始播放/停止或检测媒体播放器的播放/停止按钮的点击?

更一般地说,我想检测音频流何时开始/结束。

谢谢

Does it exists a broadcast receiver action in order to listen a Media Player event such as the detection of the music starting to play/stop or the detection of the hit of Play/Stop Button of the MediaPlayer ?

More generally I'd like to detect when the audio stream is starting/ending.

Thanks

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

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

发布评论

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

评论(1

那伤。 2025-01-13 11:59:13

您可以尝试 requestAudioFocus() 在您想要收听的流上注册音频焦点侦听器。您实际上不需要播放此流。

当您收到 AUDIOFOCUS_LOSS 时,这意味着另一个“音频流正在启动”
当您收到 AUDIOFOCUS_GAIN 时,这意味着另一个“音频流正在结束”
如果您对音乐流感兴趣,isMusicActive() 也可能对您有所帮助。

You can try requestAudioFocus() to register an audio focus listener on a stream which you want to listen on. You don't need to play this stream actually.

When you get AUDIOFOCUS_LOSS, it means another "audio stream is starting".
When you get AUDIOFOCUS_GAIN, it means another "audio stream is ending".
If you are interested in music stream, isMusicActive() may also help you.

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