Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static final class

CalendarContract.EventDays

extends Object
implements CalendarContract.EventDaysColumns
java.lang.Object
   ↳ android.provider.CalendarContract.EventDays

Class Overview

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

Summary

[Expand]
Inherited Constants
From interface android.provider.CalendarContract.EventDaysColumns
Fields
public static final Uri CONTENT_URI
Public Methods
final static Cursor query ( ContentResolver cr, int startDay, int numDays, String[] projection)
Retrieves the days with events for the Julian days starting at "startDay" for "numDays".
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public static final Uri CONTENT_URI

Public Methods

public static final Cursor query ( ContentResolver cr, int startDay, int numDays, String[] projection)

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 the ContentResolver
startDay the first Julian day in the range
numDays the number of days to load (must be at least 1)
projection the columns to return in the cursor
Returns
  • a database cursor containing a list of start and end days for events