tags:

views:

239

answers:

1

I mean, is there any way to

  • add more functionality
  • add/remove events
  • synchronize with other then Google calendars/formats (authorized)
+1  A: 

There is a content provider available for Calendar entries: android.provider.Calendar.CONTENT_URI (see brief documentation here).

Though, I'd consider using the Google Calendar Data API. You should be able to authenticate the user using AccountManager#getAuthToken and edit calendar entries in very rich and well-documented ways.

Roman Nurik