Skip to content

Instantly share code, notes, and snippets.

@iewnait
Created June 5, 2012 17:56
Show Gist options
  • Save iewnait/2876568 to your computer and use it in GitHub Desktop.
Save iewnait/2876568 to your computer and use it in GitHub Desktop.
Example code for Calendars.Events.getEventsOnDay(ContentResolver cr, Time date)
// Set time to the same time tomorrow.
Time date = new Time();
date.setToNow();
date.weekDay = date.weekDay + 1;
Calendar.Event[] events = Calendar.Events.getEventsOnDay(getContext().getContentResolver(),
date
);
// Do something useful with these events.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment