2014-04-07 2 views

답변

0

1.Read 캘린더 URI 제 2.get 이벤트 ID 및 커서 패스

  Uri uri = Uri.parse("content://com.android.calendar/events"); 
      int eventId =EventNameText.getId(); 
      Log.d("OnClickID",""+eventId); 
      Uri newuri = ContentUris.withAppendedId(uri, eventId); 
      Intent intent = new Intent(Intent.ACTION_VIEW,newuri); 
      int cs=context.getContentResolver().delete(newuri,null, null); 
관련 문제