我能够以编程方式创建添加到我的Google日历(API v3)中的事件,但这些事件都没有提醒它们。我已按照other SO questions上的答案进行操作,我的提醒代码如下所示:
Event.Reminders reminders = new Event.Reminders()
.setUseDefault(false)
.setOverrides(Arrays.asList(
new EventReminder().setMethod("email").setMinutes(60),
new EventReminder().setMethod("popup").setMinutes(10)));
我尝试使用setUseDefault(true)
代替覆盖,但我仍未在通知部分看到任何内容。
我尝试添加setSendNotifications(true)
,但这对添加提醒本身没有任何帮助。
值得注意的是,与此日历关联的帐户使用的电子邮件不是通过Google托管的。