2012-10-21 212 views
0

有谁知道如何实现对黑莓的PhoneGap应用程序状态栏通知?我的意思是,当有人接受它应该出现如就像电子邮件警报出现在黑莓顶端的主屏幕上的小图像图标的通知一样。PhoneGap的状态栏通知

回答

0

要只显示了一些图标,你可以使用showBannerIndicator这是WebWorks的一部分。

例如

function notify() 
{ 
    blackberry.app.showBannerIndicator('notifyicon.png', 1); 
} 

https://developer.blackberry.com/html5/apis/blackberry.app.html#.showBannerIndicator

如果你想使它点击你需要看试图从这里实现社区插件,这将是更多的工作:

https://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/MessageList

我已经成功地使用了bannerindicator在PhoneGap的应用程序,但我没有带试过将MessageList呢。