3

是否可以在事件发生时生成桌面通知

例如,假设我为我的桌面创建了一个桌面剩余应用程序。

我需要在计划时间到达时创建关于任务的警报通知

提前致谢

4

2 回答 2

2

这是我使用的一些示例代码,对我来说效果很好:

function showNotify(title, message) {
  var notification = Ti.Notification.createNotification({
    'title': title || 'No Title',
    'message': message || 'No Message',
    'timeout': 10
  });
  notification.show();
}

showNotify("The Title", "The Message");
于 2013-08-05T19:22:50.900 回答
1
于 2013-08-02T02:19:03.480 回答