Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7018577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:04:10+00:00 2026-05-27T23:04:10+00:00

I am trying to add calendar event using the below code in my android

  • 0

I am trying to add calendar event using the below code in my android tablet 3.2

                                int[] calIds = null;
                                Cursor cursor = getContentResolver()
                                        .query(
                                                Uri
                                                        .parse("content://com.android.calendar/calendars"),
                                                new String[] { "_id",
                                                        "displayName" },
                                                "selected=1", null, null);
                                if (cursor != null && cursor.moveToFirst()) {
                                    String[] calNames = new String[cursor
                                            .getCount()];
                                    calIds = new int[cursor.getCount()];
                                    for (int i = 0; i < calNames.length; i++) {
                                        // retrieve the calendar names and
                                        // ids
                                        // at this stage you can print out
                                        // the display names to get an idea
                                        // of what calendars the user has
                                        calIds[i] = cursor.getInt(0);
                                        calNames[i] = cursor.getString(1);
                                        cursor.moveToNext();
                                    }
                                    cursor.close();
                                    if (calIds.length > 0) {
                                        // we're safe here to do any further
                                        // work
                                    }
                                }

                                // grab calendar id from above
                                int cal_id = calIds[1];

                                // set the content value
                                ContentValues cv = new ContentValues();

                                // make sure you add it to the right
                                // calendar
                                cv.put("calendar_id", cal_id);

                                // set the title of the event
                                cv.put("title", Name.getText().toString());

                                // set the description of the event
                                cv.put("description", Address.getText()
                                        .toString()
                                        + " ph:"
                                        + Phone.getText().toString());

                                // set the event's physical location
                                // cv.put("eventLocation", );

                                // set the start and end time
                                // note: you're going to need to convert the
                                // desired date into milliseconds

                                Calendar d = Calendar.getInstance();
                                d.set(2011, 10, 10, 3, 0, 0);
                                Calendar end = Calendar.getInstance();
                                end.set(2011, 10, 10, 9, 0, 0);

                                long startTime = d.getTimeInMillis();
                                long endTime = end.getTimeInMillis();
                                endTime = endTime * 1000;

                                startTime = startTime * 1000;
                                System.out.println("HOW TO SOL:VCE THIS");

                                System.out.println(startTime);
                                System.out.println(endTime);

                                cv.put("dtstart", startTime);

                                cv.put("dtend", endTime);



                                cv.put("rrule",
                                        "FREQ=DAILY;BYDAY=MO,TU,WE,TH,FR"); // let
                                                                            // the
                                                                            // calendar
                                                                            // know
                                                                            // whether
                                                                            // this
                                                                            // event
                                                                            // goes
                                                                            // on
                                                                            // all
                                                                            // day
                                                                            // or
                                                                            // not
                                // true = 1, false = 0

                                // let the calendar know whether an alarm
                                // should go off for this event

                                // once desired fields are set, insert it
                                // into the table
                                getContentResolver()
                                        .insert(
                                                Uri
                                                        .parse("content://com.android.calendar/events"),
                                                cv);

But i am unable to insert the event.

in log i am getting the following

10-11 12:51:47.250: INFO/CalendarProvider2(24267): Sending notification intent: Intent { act=android.intent.action.PROVIDER_CHANGED dat=content://com.android.calendar }
10-11 12:51:47.250: WARN/ContentResolver(24267): Failed to get type for: content://com.android.calendar (Unknown URL content://com.android.calendar)

How should i solve this any help..
Thanks in advance..

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T23:04:10+00:00Added an answer on May 27, 2026 at 11:04 pm

    here I am able to insert events in to calendar.

        final ContentResolver cr = getContentResolver();
        Cursor cursor ;
    
    
        //Retrieving calendar sync data 
    
    
        if (Integer.parseInt(Build.VERSION.SDK) == 8 )
            cursor = cr.query(Uri.parse("content://com.android.calendar/calendars"), new String[]{ "_id", "displayname" }, null, null, null);
        else
            cursor = cr.query(Uri.parse("content://calendar/calendars"), new String[]{ "_id", "displayname" }, null, null, null);
        if(cursor.moveToFirst()) 
        {
            final String[] calNames = new String[cursor.getCount()];
            final int[] calIds = new int[cursor.getCount()];
            for (int i = 0; i < calNames.length; i++) 
            {
                calIds[i] = cursor.getInt(0);
                calNames[i] = cursor.getString(1);
                System.out.println("Title: " +calIds[i] + " name " + calNames[i]);
                cursor.moveToNext();
            }
            System.out.println("currenttimeinmillis"+System.currentTimeMillis());
    
    
    
            AlertDialog.Builder builder = new AlertDialog.Builder(calendarsync.this);
            builder.setSingleChoiceItems(calNames, -1, new DialogInterface.OnClickListener() 
            {
                @Override
                public void onClick(DialogInterface dialog, int which) 
                {
    
                    **
    

    // Inserting/syncing events in calendar

    **

                    ContentValues cv = new ContentValues();
                    cv.put("calendar_id", calIds[which]);
                    cv.put("title", "Naven");
                    // set the description of the event
                    cv.put("description", "Birthday");
                    // set the event's physical location
                    // cv.put("eventLocation", );
    
                    Calendar d = Calendar.getInstance();
                    d.set(2012, 0, 10, 3, 0, 0);
                    Calendar end = Calendar.getInstance();
                    end.set(2012, 0, 10, 4, 0, 0);
    
                    long startTime = d.getTimeInMillis();
                    long endTime = end.getTimeInMillis();
                   // endTime = endTime * 1000;
    
                   // startTime = startTime * 1000;
                    System.out.println("HOW TO SOL:VCE THIS");
    
                    System.out.println(startTime);
                    System.out.println(endTime);
    
                    cv.put("dtstart", startTime);
    
                    cv.put("dtend", endTime);
                    cv.put("rrule","FREQ=DAILY;BYDAY=MO,TU,WE,TH,FR"); 
                    // let the calendar know whether this
                    // event goes on all day or not
                    // true = 1, false = 0
    
                    cv.put("hasAlarm", 1);
    
                    Uri newEvent ;
                    if (Integer.parseInt(Build.VERSION.SDK) == 8 )
                        newEvent = cr.insert(Uri.parse("content://com.android.calendar/events"), cv);
                    else
                        newEvent = cr.insert(Uri.parse("content://com.android.calendar/events"), cv);
    
                    if (newEvent != null) 
                    {
                        long id = Long.parseLong( newEvent.getLastPathSegment() );
                        ContentValues values = new ContentValues();
                        values.put( "event_id", id );
                        values.put( "method", 1 );
                        values.put( "minutes", 15 ); // 15 minuti
                        if (Integer.parseInt(Build.VERSION.SDK) == 8 )
                            cr.insert( Uri.parse( "content://com.android.calendar/reminders" ), values );
                        else
                            cr.insert( Uri.parse( "content://calendar/reminders" ), values );
    
                    }
                    dialog.cancel();
                }
    
            });
    
            builder.create().show();
    
        }    
        cursor.close();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to add a new event into the android calendar. Here is
I am trying to add a recurring event to my calendar via the Protocol
I'm trying to add a event to my calendar with an sms-notification. I successfully
I'm trying to add an event to a specific calendar in google calendar and
I am trying to add a dynamic onclick event using rich:findComponent as: <font class=topFirstTablehdCategory2
I am trying to add a Jquery calendar picker to a text box at
I'm trying add a tab to my web page that looks like this: Using
I am trying to use the Calendar app of Android Ice Cream Sandwich. It
I am trying to add an Add to Calendar link to my web app.
I am trying to implement jquery full calendar with json event updates. I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.