CalendarContract.Reminders

public static final class CalendarContract.Reminders
extends Object implements BaseColumns, CalendarContract.RemindersColumns, CalendarContract.EventsColumns

java.lang.Object
   ↳ android.provider.CalendarContract.Reminders


Fields and helpers for accessing reminders for an event. Each row of this table represents a single reminder for an event. Calling query(android.content.ContentResolver, long, java.lang.String[]) will return a list of reminders for the event with the given eventId. Both apps and sync adapters may write to this table. There are three writable fields and all of them must be included when inserting a new reminder. They are:

Summary

Inherited constants

Fields

public static final Uri CONTENT_URI

Public methods

static Cursor query(ContentResolver cr, long eventId, String[] projection)

Queries all reminders associated with the given event.

Inherited methods

Fields

CONTENT_URI

Added in API level 14
public static final Uri CONTENT_URI

Public methods

query

Added in API level 14
public static Cursor query (ContentResolver cr, 
                long eventId, 
                String[] projection)

Queries all reminders associated with the given event. This is a blocking call and should not be done on the UI thread.

Parameters
cr ContentResolver: The content resolver to use for the query

eventId long: The id of the event to retrieve reminders for

projection String: the columns to return in the cursor

Returns
Cursor A Cursor containing all reminders for the event