我试图通过使用名为StatusBarNotification
,LINK的Phonegap插件在Android模拟器设备上显示通知消息,我按照指示跟踪该单词,但是当我部署我的应用程序时,没有显示在状态栏,
让我感到困惑的是我不知道在哪里放置我的notficiation语法调用:
window.plugins.statusBarNotification.notify("Put your title here", "Put your message here");
我该怎么做才能解决这个问题?
答案 0 :(得分:5)
怎么样:
<a href="#" onclick='window.plugins.statusBarNotification.notify("Put your title here", "Put your message here");return false;'>Click me!</a>
将此代码放入您的网页。