0

我面临着长期以来保存在 android 日历中的事件详细信息。我可以将详细信息保存在 android 版本 2.2.3 以下的设备中,但对于更高版本,它不会保存到日历中。这是我的代码:


            Calendar cal = Calendar.getInstance();  
            Uri events = null;
            if(getCalendarUriBase(this)!=null)
            {   
            Uri EVENTS_URI = Uri.parse(getCalendarUriBase(this) + "events");
            ContentResolver cr = getContentResolver();
            // event insert

             long eventdate1=Date.parse(“23/07/2012”);
             long eventdate2=Date.parse((“23/07/2012”);

            ContentValues values = new ContentValues();
            values.put("calendar_id", 1);
            values.put("title","Event 1");
            values.put("allDay", 0);
            values.put("dtstart", eventdate1); // event starts at 11 minutes from now
            values.put("dtend", eventdate2); // ends 60 minutes from now
            values.put("description", "Description 1");
            values.put("eventLocation", "xyz");
            values.put("visibility", 0);
            values.put("hasAlarm", 1);
            try{
            try{    
            events = cr.insert(EVENTS_URI, values);
            }catch (Exception e) {
                // TODO: handle exception
                return false;
            }
            // reminder insert

            Uri REMINDERS_URI = Uri.parse(getCalendarUriBase(this) + "reminders");
            values = new ContentValues();
            values.put( "event_id", Long.parseLong(events.getLastPathSegment()));
            values.put( "method", 1 );
            values.put( "minutes", 10 );
            cr.insert( REMINDERS_URI, values );

private String getCalendarUriBase(Activity act) {

    String calendarUriBase = null;
    Uri calendars = Uri.parse("content://calendar/calendars");
    Cursor managedCursor = null;
    try {
        managedCursor = act.managedQuery(calendars, null, null, null, null);
    } catch (Exception e) {
    }
    if (managedCursor != null) {
        calendarUriBase = "content://calendar/";
    } else {
        calendars = Uri.parse("content://com.android.calendar/calendars");
        try {
            managedCursor = act.managedQuery(calendars, null, null, null, null);
        } catch (Exception e) {
        }
        if (managedCursor != null) {
            calendarUriBase = "content://com.android.calendar/";
        }
    }
    return calendarUriBase;
}

** * ** *

我错过了什么。请帮助我。

4

1 回答 1

0

我有一个类似的问题。我认为问题出在

values.put("visibility", 0);

我认为数据库中没有具有该名称的列。这与名为透明度的列相同。我在网上的一些教程中找到了

于 2012-08-23T13:43:26.857 回答