Używanie zamiaru edytowania wydarzenia w kalendarzu nie działa

Ok, czytam dokładnie dokumenty tutaj:http://developer.android.com/guide/topics/providers/calendar-provider.html#update-event i napisał coś takiego:

// 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);

Dla mnie to nie działa - otwiera prawidłowe zdarzenie, ale NIE MOŻNA go edytować - wszystkie pola są tylko do odczytu. Tylko pola, które mogę zmienić, to strefa czasowa i przypomnienie. Wszystko inne jest tylko do odczytu. czy robię coś źle?

Mój poziom API to 14 (ICS)

questionAnswers(2)

yourAnswerToTheQuestion