I am using the Android calendar. How can I remove a calendar event using code? Is it possible?
For clarification, I would like to mention that I don\'t want a sync proce
Try this to delete the event using Uri of the event id.
Uri uri='URI OF THE EVENT'; getContentResolver().delete(uri, null, null);