如何以编程方式获取提醒列表?

时间:2018-02-02 15:18:59

标签: android google-calendar-api

我创建了一个Android应用程序,可以阅读日历中的所有事件,它工作正常,但我无法阅读提醒列表:此图标标识的Google日历中的简化事件(手指上的结)

Google Calendar Reminder

有人可以告诉我如何阅读此类事件或在哪里可以找到解释此内容的教程或指南?

3 个答案:

答案 0 :(得分:1)

如果要获取提醒列表,请使用Events.list。它返回事件和随附的提醒。

Default reminders

  

默认提醒也会在退货时返回    做一个事件列表查询。

答案 1 :(得分:0)

我发现提醒不仅在日历上,而且在不同的Google应用中(例如保留)。 不幸的是,无法访问此类数据。

这是Stackoverflow中答案的链接:How to read reminders in google calendars

答案 2 :(得分:0)

According to OferR The Reminders data is held in a database and accessible by the 'com.google.android.gms.reminders.provider.RemindersProvider' content provider.

So, the provider is not exported and therefore is not accessible to third party apps.