我正在使用Cordova媒体插件播放音乐。一切正常。当我锁定屏幕时,我看到播放音乐的默认音乐播放器。但当我按下一个或上一个曲目按钮时,没有任何反应。
有没有办法收听下一个/上一个音轨按钮事件?我突出显示了下图中的按钮
答案 0 :(得分:1)
我还没有尝试过,但我认为RemoteControls插件可以帮助你:
https://github.com/shi11/RemoteControls
您可以像这样倾听remote-event
并决定该怎么做:
document.addEventListener("remote-event", function(event) {
//do something
})
不要忘记在导入cordova.js
并设置deviceready
事件后设置此事件侦听器。
<script src="./cordova.js"></script>
<script>
document.addEventListener("deviceready", function(event) {
document.addEventListener("remote-event", function(event) {
// see what happens in event
// console.log(event)
// and do something
})
})
</script>