PhongGap Android Phone Call 活动即将到来

发布于 2025-01-07 07:28:46 字数 341 浏览 2 评论 0 原文

我正在使用 PhoneGap 版本 1.4.1 制作一个 Android 应用程序,

我的应用程序中有一些 Flash 内容(带声音的视频)。我的问题是,即使有电话打进来,视频也会继续播放。因此,当用户接听电话时,他会听到视频中的声音。 是否有电话打进来时触发的事件?

以下是我的代码,

function onDeviceReady(){
    document.addEventListener("**phonecall**", **onPhoneCall**, false);
}

function **onPhoneCall**(){
    pauseVideo();
}

I am making an android app using PhoneGap version 1.4.1

I have some flash content(Video with sound) in my application. My problem is, the video keeps playing even when the phone call comes in. So when user answers the phone call he hears the sound from video.
Is there an event that triggers when phone call comes in?

Following is my code,

function onDeviceReady(){
    document.addEventListener("**phonecall**", **onPhoneCall**, false);
}

function **onPhoneCall**(){
    pauseVideo();
}

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

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

发布评论

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

评论(1

少年亿悲伤 2025-01-14 07:28:46

否,没有电话呼叫事件

您可以尝试使用暂停事件,应该在电话呼叫时调用它

document.addEventListener("pause", onPause, false);

function onPause() {
    // pause the video here
}

http://docs.phonegap.com/en/4.0.0/cordova_events_events.md.html#pause

No, there is no phonecall event

You can try to use the pause event, it should be called on phone call

document.addEventListener("pause", onPause, false);

function onPause() {
    // pause the video here
}

http://docs.phonegap.com/en/4.0.0/cordova_events_events.md.html#pause

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