PhoneGap状态栏通知

时间:2012-10-21 05:26:43

标签: blackberry cordova

有谁知道如何为黑莓PhoneGap应用实施状态栏通知?我的意思是,当有人收到通知时,它应该显示为黑莓手机顶部主屏幕上的小图像图标,就像电子邮件提醒一样。

1 个答案:

答案 0 :(得分:0)

要显示带有数字的图标,您可以使用showBannerIndicator,它是webworks的一部分。

e.g。

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

我在phonegap应用程序中成功使用了bannerindicator,但我还没有尝试过MessageList。