PhoneGap支持推送通知(主页徽章)?

时间:2011-11-11 11:10:53

标签: mobile cordova push-notification push


我已经阅读了phonegap的文档,说它支持一些推送通知功能http://wiki.phonegap.com/w/page/37159628/Notifications
我可以知道是否可以使用PhoneGap进行“家徽”推送通知?

2 个答案:

答案 0 :(得分:1)

我不确定你是否已经成功,但这可能对你有所帮助。

Link to android push notification

我自己没试过,但我正在为使用phonegap的iphone寻找家徽章方法

答案 1 :(得分:1)

可以使用Cordova Push Notifications Plugin

此插件为推送通知提供方便的回调,您可以在其中相应地设置应用程序图标徽章,例如:

//push notifications callback function
function onNotificationAPN (event) {
    //handle push message
    if (event.badge) //a badge number is provided in the push message
    {
        //set the application icon badge number accordingly
        pushNotification.setApplicationIconBadgeNumber(successHandler, errorHandler, event.badge);
    }
} 
相关问题