Android PhoneGap 通知状态栏不显示任何内容
我正在尝试使用名为 StatusBarNotification
的 Phonegap 插件在 Android 模拟器设备上显示通知消息,LINK,我按照说明进行操作,但是当我部署应用程序时,状态栏中没有显示任何内容,
令我困惑的是我不知道将我的应用程序放在哪里通知语法调用是:
window.plugins.statusBarNotification.notify("Put your title here", "Put your message here");
我应该做什么来解决这个问题?
I am trying to display a notification msg on android simulator device by using Phonegap plugin called StatusBarNotification
, LINK, I followed the instrucations to the word, but when I deploy my application nothing shows in the status bar,
What's confusing me is I do not know where to put my notficiation syntax call which is:
window.plugins.statusBarNotification.notify("Put your title here", "Put your message here");
What should I do to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个怎么样:
点击我!
将此代码放入您的网页中。
what about this:
<a href="#" onclick='window.plugins.statusBarNotification.notify("Put your title here", "Put your message here");return false;'>Click me!</a>
Put this code into your web page.