我已经使用了doc的方式,但是通过ID删除事件无效。这是我的代码:
Uri deleteUri = null;
deleteUri = ContentUris.withAppendedId(CalendarContract.Events.CONTENT_URI, eventIdExtra);
int rows = getContentResolver().delete(deleteUri, null, null);
Log.i(TAG, "removeEventFromCalendar Rows deleted: " + rows);
行返回0,并且不会从Google日历中删除。