Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new in android development.I am using following code to add event calendar in my android application.

Calendar cal = Calendar.getInstance();              
            Intent intent = new Intent(Intent.ACTION_EDIT);
            intent.setType("vnd.android.cursor.item/event");
            intent.putExtra("beginTime", cal.getTimeInMillis());
            intent.putExtra("allDay", true);
            intent.putExtra("rrule", "FREQ=YEARLY");
            intent.putExtra("endTime", cal.getTimeInMillis()+60*60*1000);
            intent.putExtra("title", "A Test Event from android app");
            startActivity(intent);

but getting following error :

02-21 12:33:38.262: E/AndroidRuntime(404): FATAL EXCEPTION: main
02-21 12:33:38.262: E/AndroidRuntime(404): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.EDIT typ=vnd.android.cursor.item/event (has extras) }
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1408)
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.app.Instrumentation.execStartActivity(Instrumentation.java:1378)
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.app.Activity.startActivityForResult(Activity.java:2817)
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.app.Activity.startActivity(Activity.java:2923)
02-21 12:33:38.262: E/AndroidRuntime(404):  at com.infrasoft.elara.HomeActivity$1.onClick(HomeActivity.java:36)
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.view.View.performClick(View.java:2408)
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.view.View$PerformClick.run(View.java:8816)
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.os.Handler.handleCallback(Handler.java:587)
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.os.Handler.dispatchMessage(Handler.java:92)
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.os.Looper.loop(Looper.java:123)
02-21 12:33:38.262: E/AndroidRuntime(404):  at android.app.ActivityThread.main(ActivityThread.java:4627)
02-21 12:33:38.262: E/AndroidRuntime(404):  at java.lang.reflect.Method.invokeNative(Native Method)
02-21 12:33:38.262: E/AndroidRuntime(404):  at java.lang.reflect.Method.invoke(Method.java:521)
02-21 12:33:38.262: E/AndroidRuntime(404):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
02-21 12:33:38.262: E/AndroidRuntime(404):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
02-21 12:33:38.262: E/AndroidRuntime(404):  at dalvik.system.NativeStart.main(Native Method)

AndroidManifest.xml :

 <uses-permission android:name="android.permission.WRITE_CALENDAR" />
  <uses-permission android:name="android.permission.READ_CALENDAR" />

    <activity
        android:name=".CalendarActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.INSERT" />
            <category android:name="android.intent.category.APP_CALENDAR" />
            <data android:mimeType="vnd.android.cursor.item/event" />
        </intent-filter>
    </activity>

Please tell me what is wrong. Thanks in advance.

share|improve this question
Check this question once[ Calender Events][1] [1]: stackoverflow.com/questions/6094243/… – Prudhvi Reddy Feb 21 at 8:38
Hi Prudhvi I went through that question, but it discusses a different problem – Amruta Feb 21 at 9:18

1 Answer

EDITED

I believe you are trying to run this on an emulator. By default the emulators do not have a calendar app installed on them. So there is nothing to handle this type of intent. It should work on a device that has a calendar event. Try and run it on a physical device which has the native android calendar app installed. It will work.

For emulator you could do the following :

1) download Calendar.apk (native android calendar)

2) install it wia adb (http://developer.android.com/guide/developing/tools/adb.html) with the command :

adb -e install Calendar.apk

3) Then try running your app once the calendar is installed.

You should have the following permissions declared in your manifest.xml :

<uses-permission android:name="android.permission.READ_CALENDAR" />
<uses-permission android:name="android.permission.WRITE_CALENDAR" />
share|improve this answer
hi Abhishek, I have made an entry for the permissions. But did not have entry of <intent-filter> . Now I have added that , but I am facing similar error :( .In my project Calendar Activity is not the main activity so I have skipped action tag for MAIN – Amruta Feb 21 at 8:53
Are you running this on an emulator ? – Abhishek Sabbarwal Feb 21 at 9:09
:::Yes,I am running it on an emulator – Amruta Feb 21 at 9:15
See my updated answer. – Abhishek Sabbarwal Feb 21 at 9:17
You need not have the intent-filter part now. The problem is with the emulator not having the calendar app and hence there is no-one to recieve the intent. – Abhishek Sabbarwal Feb 21 at 9:21
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.