구글일정 연동관련해서 만드는 중인데 일정을 새롭게 등록(반복-월마다)하고 그 일정에서 하루를 골라서 향후모든일정으로 저장을 한다음 아래와 같이 속성을 보면 연관성이 없습니다
Uri calendars = Uri.parse("content://com.android.calendar/events");
String[] projection = new String[] { "_id", "title", "calendar_id"};
Calendar startMonthTime = Calendar.getInstance();
startMonthTime.set(2013, 1, 0, 0, 0, 0);
String selection = "*";
Cursor managedCursor = mContext.getContentResolver().query(calendars,
projection, selection, null, null);
ex>
매주 금요일마다 반복 표시
_id = 222
title = 노트북
calendar_id = null;
테스트 일정에 대해서 특정한 날짜를 선택해서 향후모든 일정으로 저장을 햇습니다
_id = 224
title = 현대
calendar_id = null;
연관성이 없는데 어떻게 구글달력에는 연관성있게 표시가 될까요?
