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?
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
© 2024 OneMinuteCode. All rights reserved.