2011-11-11 126 views

回答

1

我不確定你是否來過,但這可能會幫助你使用android。

Link to android push notification

我還沒有嘗試過這個自己,但我使用PhoneGap的

+0

我這個覆蓋在我的博客http://programmersgabble.blogspot.com/ – Jed

1

有可能與Cordova Push Notifications Plugin找了家徽章方法爲iPhone。

這個插件爲您提供了推送通知,在這裏你可以設置相應的應用程序圖標徽章,例如方便的回調:

//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); 
    } 
} 
+0

是的,但這僅適用於iOS。到目前爲止,似乎不支持Android,當然,他們只有86%的市場份額...... – andreszs