Usar un intento de editar el evento del calendario no funciona

Ok, leo documentos muy precisamente aquí:http://developer.android.com/guide/topics/providers/calendar-provider.html#update-event y está escrito algo como esto:

// Here is an example of an intent that sets a new title for a specified event and lets users edit the event in the Calendar.

long eventID = 208;
Uri uri = ContentUris.withAppendedId(Events.CONTENT_URI, eventID);
Intent intent = new Intent(Intent.ACTION_EDIT)
    .setData(uri)
    .putExtra(Events.TITLE, "My New Title");
startActivity(intent);

Para mí no funciona, abre el evento correcto, pero NO ES POSIBLE editarlo, todos los campos son de solo lectura. Solo los campos que puedo cambiar son Zona horaria y Recordatorio. Todo lo demás es solo lectura. ¿Estoy haciendo algo mal?

Mi nivel de API es 14 (ICS)

Respuestas a la pregunta(2)

Su respuesta a la pregunta