我使用Cordova 3.5.0-0.2.6来创建一个Android应用程序,使用PushPlugin 2.2.1来推送通知。
当应用程序在后台时,一切工作正常,并在我的droid通知栏中获得通知,但是当它在前台时,当它获得通知时什么也没有发生。想让它播放声音,甚至显示一个弹出警报,让用户知道他有一个新的通知。从插件的github页面(https://github.com/phonegap-build/PushPlugin)复制示例代码,但它不工作。代码的对应部分如下:
case 'message':
// if this flag is set, this notification happened while we were in the foreground.
// you might want to play a sound to get the user's attention, throw up a dialog, etc.
if (e.foreground)
{
// on Android soundname is outside the payload.
// On Amazon FireOS all custom attributes are contained within payload
var soundfile = e.soundname || e.payload.sound;
// if the notification contains a soundname, play it.
// playing a sound also requires the org.apache.cordova.media plugin
var my_media = new Media("/android_asset/www/"+ soundfile);
my_media.play();
}
else
{ // otherwise we were launched because the user touched a notification in the notification tray.
window.location = 'iframe.html?url=' + e.payload.url;
if (e.coldstart) {
//$("#app-status-ul").append('<li>--COLDSTART NOTIFICATION--' + '</li>');
} else{
//$("#app-status-ul").append('<li>--BACKGROUND NOTIFICATION--' + '</li>');
}
}
不确定beep.wav文件应该放在哪里,我把它放在www文件夹中,但我100%确定那是放它的地方。
以前有人遇到过这个问题吗?你知道我遗漏了什么吗?
谢谢,
卢西亚诺
android请添加属性"forceShow": "true",它应该工作。
示例代码如下:
var push = PushNotification.init({
"android": {
"senderID": "xxxxxxxxx",
"forceShow": "true",
"icon": "icon",
"sound": true,
"vibration": true,
"badge": true
},
"browser": {
},
"ios": {
"senderID": "xxxxxxxxx",
"icon": "icon",
"gcmSandbox": true,
"sound": true,
"vibration": true,
"badge": true
},
"windows": {}
});
但是当它在前台收到通知时什么也没发生
这是PushPlugin的默认行为。它只在应用程序处于后台或关闭时创建通知和相关声音。
想让它播放声音,甚至显示一个弹出警报,让用户知道他有一个新的通知。
最简单的解决方案是使用Cordova插件对话框。你所要做的就是:
switch( e.event )
{
case 'message':
if (e.foreground) {
navigator.notification.beep(1);
}
.
.
}
注意,此提示音为用户在其设备上配置的留言音。
不确定beep.wav文件应该放在哪里,我把它放在www文件夹
也不确定,但我想也是www
目录。
参见:Android在应用程序未运行时不会播放推送声音