Guest User

Untitled

a guest
May 24th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. ContentValues attValues = new ContentValues();
  2. attValues.put(CalendarContract.Attendees.ATTENDEE_NAME, "RRD Attendees");
  3. attValues.put(CalendarContract.Attendees.ATTENDEE_EMAIL, "sample@gmail.com");
  4. attValues.put(CalendarContract.Attendees.ATTENDEE_RELATIONSHIP, CalendarContract.Attendees.RELATIONSHIP_NONE);
  5. attValues.put(CalendarContract.Attendees.ATTENDEE_TYPE, CalendarContract.Attendees.TYPE_REQUIRED);
  6. attValues.put(CalendarContract.Attendees.ATTENDEE_STATUS, CalendarContract.Attendees.ATTENDEE_STATUS_INVITED);
  7. attValues.put(CalendarContract.Attendees.EVENT_ID, eventID);
  8. Uri uri = cr.insert(CalendarContract.Attendees.CONTENT_URI, attValues);
Add Comment
Please, Sign In to add comment