Я пробовал использовать контент-провайдеры, но событие не было добавлено в календарь.
final ContentResolver cr = ctx.getContentResolver();
ContentValues cv = new ContentValues();
cv.put("calendar_id", l_calId);
cv.put("title", title);
cv.put("description", description);
cv.put("dtstart", millis1 );
cv.put("hasAlarm", 1);
cv.put("dtend", millis2);
cv.put("eventLocation", "Hall: "+location);
cv.put("transparency", 1);
cv.put("hasAlarm", 1);
Uri newEvent ;
if (Integer.parseInt(Build.VERSION.SDK) == 8 )
newEvent = cr.insert(Uri.parse("content://com.android.calendar/events"), cv);
else
newEvent = cr.insert(Uri.parse("content://com.android.calendar/events"), cv);