当我的介绍视频播放时 Android Google Music 应用停止
我在 Android 应用程序中使用 VideoView 来显示介绍动画。
如果 Google 音乐应用程序正在后台播放音乐,则调用 videoview.start() 会停止 Google 音乐应用程序在后台播放音乐。
有没有办法确保背景音乐与我的介绍视频同时播放? (没有声音)
谢谢!
I'm using a VideoView in my Android app to display the intro animation.
If the Google Music App is playing music in the background, calling videoview.start() stops music playing in Google Music App in the background.
Is there a way to make sure any music in the background will keep playing at the same time with my intro video? (it has no audio)
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
事实证明,当任何视频开始播放时,谷歌音乐应用程序和其他一些应用程序将停止播放音乐。
为了确保我不会中断用户的聆听体验,如果我确定背景中有音乐播放,我现在会跳过介绍视频。
为此:
Turns out Google Music App and a few other apps will stop their music when any video starts playing.
In order to make sure I'm not interrupting the listening experience for my users I now skip the intro video if I determine that there is music playing in the background.
To do this:
使用之前给出的两个答案,这是一个在视频结束后恢复音乐的解决方案:
Using both the answers previously given, here is a solution that will resume music after your video ends:
取自 VideoView 中的 openVideo() .java
Taken from openVideo() in VideoView.java