我可以添加和删除新的定期活动,但如何使用新的 Android 日历 API 编辑/删除定期活动中的一个活动?如果可能的话,我如何更新一个事件的提醒?
问候丹尼尔
我可以添加和删除新的定期活动,但如何使用新的 Android 日历 API 编辑/删除定期活动中的一个活动?如果可能的话,我如何更新一个事件的提醒?
问候丹尼尔
也许这会有所帮助:
// First retrieve the instances from the API.
Events instances = service.events().instances("primary", "recurringEventId").execute();
// Select the instance to edit
Event instance = instances.getItems().get(0);
if(youWantToCancel) {
instance.setStatus("canceled");
instance.setReminders(yourReminders);
Event updatedInstance = service.events().update("primary", instance.getId(), instance).execute();
}
if(youWantToDelete){
instance.setId("ToBeDeleted")
service.events().delete("primary", instance.getId()).execute();
}
如果您想在重复中删除多个事件,只需将 id 设置为一些明显的字符串,如“ToBeDeleted”并执行:service.events().delete("primary",
"ToBeDeleted").execute();
参见文档