Код: Выделить всё
// 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)
Подробнее здесь: https://stackoverflow.com/questions/130 ... oesnt-work
Мобильная версия