我已經閱讀了phonegap的文檔說它支持一些推送通知功能http://wiki.phonegap.com/w/page/37159628/Notifications
我可以知道是否有可能使用PhoneGap進行「家徽」推送通知?PhoneGap支持的推送通知(家徽)?
1
A
回答
1
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
相關問題
- 1. PhoneGap通知(推送)
- 2. 推送通知徽章
- 3. 推送通知的Android版本支持
- 4. Android的Phonegap推送通知
- 5. Android設置rtl支持推送通知
- 6. MUC-光推送通知支持
- 7. 在Phonegap中推送通知?
- 8. 與parse.com Phonegap推送通知
- 9. Phonegap Build推送通知
- 10. Android推送通知Phonegap HTML5
- 11. PhoneGap Meteor iOS推送通知
- 12. Phonegap推送通知實施
- 13. 推送通知徽章不會消失
- 14. Apple推送通知徽章號碼
- 15. 推送通知:聲音和徽章
- 16. 推送通知徽章自動增量
- 17. 推送通知徽章重置計數
- 18. 推送通知徽章沒有出現?
- 19. Parse.com推送通知徽章值
- 20. 推送通知 - 應用徽章圖標
- 21. 離子推送通知和徽章
- 22. 本地推送通知徽章號碼
- 23. 更新推送通知徽章數
- 24. Phonegap IOS的Phonegap推送通知 - 推薦的解決方案
- 25. Apple推送通知 - 刪除徽章但不通知文本
- 26. Phonegap推送通知是否可能?
- 27. Pushwoosh和Phonegap推送通知格式
- 28. Phonegap和Parse.com推送通知android
- 29. 使用phonegap + jQuery mobile推送通知
- 30. 未收到Phonegap iOS推送通知
我這個覆蓋在我的博客http://programmersgabble.blogspot.com/ – Jed