CalendarContract.CalendarAlerts

public static final class CalendarContract.CalendarAlerts
extends Object implements BaseColumns, CalendarContract.CalendarAlertsColumns, CalendarContract.EventsColumns, CalendarContract.CalendarColumns

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


Fields and helpers for accessing calendar alerts information. These fields are for tracking which alerts have been fired. Scheduled alarms will generate an intent using CalendarContract.ACTION_EVENT_REMINDER. Apps that receive this action may update the CalendarContract.CalendarAlertsColumns.STATE for the reminder when they have finished handling it. Apps that have their notifications disabled should not modify the table to ensure that they do not conflict with another app that is generating a notification. In general, apps should not need to write to this table directly except to update the state of a reminder.

Summary

Inherited constants

Fields

public static final Uri CONTENT_URI

The Uri for querying calendar alert information

public static final Uri CONTENT_URI_BY_INSTANCE

This URI is for grouping the query results by event_id and begin time.

Inherited methods

Fields

CONTENT_URI

Added in API level 14
public static final Uri CONTENT_URI

The Uri for querying calendar alert information

CONTENT_URI_BY_INSTANCE

Added in API level 14
public static final Uri CONTENT_URI_BY_INSTANCE

This URI is for grouping the query results by event_id and begin time. This will return one result per instance of an event. So events with multiple alarms will appear just once, but multiple instances of a repeating event will show up multiple times.