2016-12-01 1 views
1

Google 캘린더에 새 일정을 삽입하려고합니다. 내 코드는 다음과 같습니다Android - 캘린더 이벤트 삽입

@OnClick(R.id.add_event_button) 
    public void addEvent() { 
     CalendarDB calendar = (CalendarDB) mCalendarSpinner.getSelectedItem(); 
     String id = calendar.calendarId; 
     ContentValues event = new ContentValues(); 
     event.put(CalendarContract.Events.EVENT_TIMEZONE, "Europe/Berlin"); // Here choose your location time zone 

     event.put("calendar_id", id); 
     event.put("title", "barteq calendar tutorial test"); 
     event.put("description", "This is a simple test for calendar api"); 
     event.put("dtstart", System.currentTimeMillis()); 
     event.put("dtend", System.currentTimeMillis() + 1800*1000); 
     event.put("allDay", 0); 
     event.put("eventStatus", 3); 

     event.put("hasAlarm", 1); 
     Uri l_eventUri; 
     if (Build.VERSION.SDK_INT >= 8) { 
      l_eventUri = Uri.parse("content://com.android.calendar/events"); 
     } else { 
      l_eventUri = Uri.parse("content://calendar/events"); 
     } 
     Uri l_uri = this.getContentResolver().insert(l_eventUri, event); 
     } 

그러나 내가 ID로 문제를 받고 있어요 : 나는 그것을 확인했습니다

java.lang.IllegalArgumentException: New events must specify a calendar id 

- 내가 올바른 ID를 보내고있다 - 예를 [email protected] 정도 왜 구글은 그것에 문제가 있습니까? 어떤 아이디어? 사전

답변

1

감사는이 열이 문제는 여전히 존재하는 달력 아이디

event.put(CalendarContract.Events.CALENDAR_ID,1); 
+0

를 지정 추가 / – Bartos