0

我一直在寻找这个几个小时,但似乎无法找到它。我有用于 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;
}
4

2 回答 2

0

你可以试试这段代码。获取计时器并在时间设置通知

function updateClock ( ){
 var currentTime = new Date ( );
  var currentHours = currentTime.getHours ( );
  var currentMinutes = currentTime.getMinutes ( );
  var currentSeconds = currentTime.getSeconds ( );
//get timer varialbe

//check. send a notification to update
if(currentHours == ... && currentMinutes  == ...){
  notify();//send notification
}

并每秒更新一次计时器

 setInterval('updateClock()', 1000);
于 2012-04-20T02:11:09.157 回答
0

使用 LocalNotification 插件而不是 StatusBarNotification。

function onDeviceReady() {
// Now safe to use the PhoneGap API
setTimeout("notify()",60000);}

function notify() {
if (typeof plugins !== "undefined") {
                    plugins.localNotification.add({
                        date : new Date(),
                        message : "Phonegap - Local Notification\r\nSubtitle comes after linebreak",
                        ticker : "This is a sample ticker text",
                        repeatDaily : false,
                        id : 4
                });}

有关更多详细信息,请访问- 适用于 Android 的本地通知 PhoneGap 插件

于 2012-09-03T13:47:59.170 回答