BGM keeps ringing even in the MONACA app background

Asked 2 years ago, Updated 2 years ago, 88 views

I'm playing mp3 as BGM using the Media API of PhoneGap.
Press the home button on Android and the background music will continue to ring even if the display is switched to the home screen.
What should I do?

monaca

2022-09-30 20:47

1 Answers

The pause event fires when you press the home button, so you should stop it in that event handler.

 document.addEventListener("pause", function(){
    media.pause();
}, false);

Note: Events - Monaca Documentation - Monaca Docs
http://docs.monaca.mobi/cur/ja/reference/phonegap_34/ja/events/events/ #pause-ja


2022-09-30 20:47

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.