わかりました、私はここでドキュメントを非常に正確に読みます: http://developer.android.com/guide/topics/providers/calendar-provider.html#update-eventと、次のように書かれたもの:
// 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);
私にとっては機能しません-正しいイベントを開きますが、編集することはできません-すべてのフィールドは読み取り専用です。私が変更できるフィールドは、タイムゾーンとリマインダーだけです。他のすべては読み取り専用です。私は何か間違ったことをしていますか?
私の API レベルは 14 (ICS) です