diff options
author | Scott Main <smain@google.com> | 2011-10-27 18:09:55 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-10-27 18:09:55 +0000 |
commit | 5158f043b0c305921f5a5f2e1256854b6ab795c0 (patch) | |
tree | c7f967a45e8218045d0a02f99a3ff346c00d015c /docs | |
parent | b38fbaf256d88cf656fbaf4e5141c188d8e1eeb9 (diff) | |
parent | 7c210d2dad36f19abefe4e1e8224579c66a737c4 (diff) | |
download | frameworks_base-5158f043b0c305921f5a5f2e1256854b6ab795c0.zip frameworks_base-5158f043b0c305921f5a5f2e1256854b6ab795c0.tar.gz frameworks_base-5158f043b0c305921f5a5f2e1256854b6ab795c0.tar.bz2 |
am 7c210d2d: am cbce4eda: Merge "docs: change calendar overview to recommend using data URI instead of MIME type for event intents" into ics-mr0
* commit '7c210d2dad36f19abefe4e1e8224579c66a737c4':
docs: change calendar overview to recommend using data URI instead of MIME type for event intents
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/sdk/android-4.0.jd | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/html/sdk/android-4.0.jd b/docs/html/sdk/android-4.0.jd index 0708dd3..cad89c2 100644 --- a/docs/html/sdk/android-4.0.jd +++ b/docs/html/sdk/android-4.0.jd @@ -264,10 +264,11 @@ the {@link android.Manifest.permission#READ_CALENDAR} permission (for read acces <h4>Event intent</h4> -<p>If all you want to do is add an event to the user’s calendar, you can use an -{@link android.content.Intent#ACTION_INSERT} intent with a {@code "vnd.android.cursor.item/event"} -MIME type to start an activity in the Calendar app that creates new events. Using the intent does -not require any permission and you can specify event details with the following extras:</p> +<p>If all you want to do is add an event to the user’s calendar, you can use an {@link +android.content.Intent#ACTION_INSERT} intent with the data defined by {@link +android.provider.CalendarContract.Events#CONTENT_URI Events.CONTENT_URI} in order to start an +activity in the Calendar app that creates new events. Using the intent does not require any +permission and you can specify event details with the following extras:</p> <ul> <li>{@link android.provider.CalendarContract.EventsColumns#TITLE Events.TITLE}: Name for the |