В настоящее время все события открыты с датой 1 января 1970 года.
Вот ожидающий код создания намерения:
Uri uri = ContentUris.withAppendedId(CalendarContract.Events.CONTENT_URI, id);
Intent intent = new Intent(Intent.ACTION_VIEW).setData(uri);
// I've tried adding these extras as well, they are not required for google calendar
intent.putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME, mRawStartTime);
intent.putExtra(CalendarContract.EXTRA_EVENT_END_TIME, mRawEndTime);
intent.putExtra(CalendarContract.EXTRA_EVENT_ALL_DAY, mIsAllDay);
return PendingIntent.getActivity(context, 1 ,intent, 0);
Требуются ли для этого календаря особые дополнения?