Mik Kardash
Mik Kardash

Reputation: 630

How can I extend Calendar on Android?

I mean, is there any way to

Upvotes: 3

Views: 1463

Answers (1)

Roman Nurik
Roman Nurik

Reputation: 29745

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.

Upvotes: 2

Related Questions