我一直在寻找这个几个小时,但似乎无法找到它。我有用于 android 工作的 phonegap 系统通知插件; https://github.com/phonegap/phonegap-plugins/tree/master/Android/StatusBarNotification
我想出了如何使用它;android phonegap 通知状态栏显示什么
但是,我不希望用户必须单击链接。我想让脚本定期寻找新的更新。我已经尝试过setTimeout
,$(document).ready(handler)
但没有任何效果。我也无法从我的代码的最后一行(之前</body>
)推送通知,该技巧适用于常规浏览器中的大多数 javascript。
那么谁能帮我让计时器运行以将此通知推送到状态栏?
没关系,我使用下面的代码让它工作。不知道出了什么问题,但可能是一天中的时间:)
function onDeviceReady() {
// Now safe to use the PhoneGap API
setTimeout("notify()",60000);
}
function notify() {
navigator.notification.beep(1);
window.plugins.statusBarNotification.notify("Put your title here", "Put your message here");
return false;
}