当前所有活动的开始日期均为1970年1月1日。
这是待定的意图创建代码:
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);
此日历是否需要特定的附加功能?