android.provider.CalendarContract.CalendarAlertsColumns |
Known Indirect Subclasses |
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | ALARM_TIME | The alarm time of the event, in UTC. | |||||||||
String | BEGIN | The start time of the event, in UTC. | |||||||||
String | CREATION_TIME | The creation time of this database entry, in UTC. | |||||||||
String | DEFAULT_SORT_ORDER | The default sort order for this alerts queries | |||||||||
String | END | The end time of the event, in UTC. | |||||||||
String | EVENT_ID | The event that the alert belongs to. | |||||||||
String | MINUTES | The number of minutes that this alarm precedes the start time. | |||||||||
String | NOTIFY_TIME | The time that the notification was created by the Calendar app, in UTC. | |||||||||
String | RECEIVED_TIME | The time that the alarm broadcast was received by the Calendar app, in UTC. | |||||||||
String | STATE | The state of this alert. | |||||||||
int | STATE_DISMISSED | Once the user has dismissed the notification the alert's state should be set to dismissed so it is not fired again. | |||||||||
int | STATE_FIRED | After a notification for an alert has been created it should be updated to fired. | |||||||||
int | STATE_SCHEDULED | An alert begins in this state when it is first created. |
The alarm time of the event, in UTC. Column name.
Type: INTEGER (long; millis since epoch)
The start time of the event, in UTC. Column name.
Type: INTEGER (long; millis since epoch)
The creation time of this database entry, in UTC. Useful for debugging missed reminders. Column name.
Type: INTEGER (long; millis since epoch)
The default sort order for this alerts queries
The end time of the event, in UTC. Column name.
Type: INTEGER (long; millis since epoch)
The event that the alert belongs to. Column name.
Type: INTEGER (foreign key to the Events table)
The number of minutes that this alarm precedes the start time. Column name.
Type: INTEGER
The time that the notification was created by the Calendar app, in UTC. Useful for debugging missed reminders. Column name.
Type: INTEGER (long; millis since epoch)
The time that the alarm broadcast was received by the Calendar app, in UTC. Useful for debugging missed reminders. Column name.
Type: INTEGER (long; millis since epoch)
The state of this alert. It starts out as STATE_SCHEDULED
, then
when the alarm goes off, it changes to STATE_FIRED
, and then when
the user dismisses the alarm it changes to STATE_DISMISSED
. Column
name.
Type: INTEGER
Once the user has dismissed the notification the alert's state should be set to dismissed so it is not fired again.
After a notification for an alert has been created it should be updated to fired.
An alert begins in this state when it is first created.