Added in API level 14

EventDays

class EventDays : CalendarContract.EventDaysColumns
kotlin.Any
   ↳ android.provider.CalendarContract.EventDays

Fields and helpers for querying for a list of days that contain events.

Summary

Inherited constants
Public methods
static Cursor!
query(cr: ContentResolver!, startDay: Int, numDays: Int, projection: Array<String!>!)

Retrieves the days with events for the Julian days starting at "startDay" for "numDays".

Properties
static Uri!

Public methods

query

Added in API level 14
static fun query(
    cr: ContentResolver!,
    startDay: Int,
    numDays: Int,
    projection: Array<String!>!
): Cursor!

Retrieves the days with events for the Julian days starting at "startDay" for "numDays". It returns a cursor containing startday and endday representing the max range of days for all events beginning on each startday.This is a blocking function and should not be done on the UI thread.

Parameters
cr ContentResolver!: the ContentResolver
startDay Int: the first Julian day in the range
numDays Int: the number of days to load (must be at least 1)
projection Array<String!>!: the columns to return in the cursor
Return
Cursor! a database cursor containing a list of start and end days for events

Properties

CONTENT_URI

Added in API level 14
static val CONTENT_URI: Uri!