From 26f6a823ca32b4c8e42bc02efb0ce74c3f281f55 Mon Sep 17 00:00:00 2001
From: Shin-ichiro KAWASAKI Some examples of action/data pairs are: {@link #ACTION_VIEW} content://contacts/1 -- Display
+ * {@link #ACTION_VIEW} content://contacts/people/1 -- Display
* information about the person whose identifier is "1". {@link #ACTION_DIAL} content://contacts/1 -- Display
+ * {@link #ACTION_DIAL} content://contacts/people/1 -- Display
* the phone dialer with the person filled in. {@link #ACTION_VIEW} tel:123 -- Display
@@ -89,10 +89,10 @@ import java.util.Set;
* {@link #ACTION_DIAL} tel:123 -- Display
* the phone dialer with the given number filled in. {@link #ACTION_EDIT} content://contacts/1 -- Edit
+ * {@link #ACTION_EDIT} content://contacts/people/1 -- Edit
* information about the person whose identifier is "1". {@link #ACTION_VIEW} content://contacts/ -- Display
+ * {@link #ACTION_VIEW} content://contacts/people/ -- Display
* a list of people, which the user can browse through. This example is a
* typical top-level entry into the Contacts application, showing you the
* list of people. Selecting a particular person to view would result in a
@@ -156,7 +156,7 @@ import java.util.Set;
* defined in the Intent class, but applications can also define their own.
* These strings use java style scoping, to ensure they are unique -- for
* example, the standard {@link #ACTION_VIEW} is called
- * "android.app.action.VIEW".
- *
Put together, the set of actions, data types, categories, and extra data * defines a language for the system allowing for the expression of phrases @@ -347,7 +347,7 @@ import java.util.Set; *
{ action=android.app.action.MAIN, * category=android.app.category.LAUNCHER } is the actual intent * used by the Launcher to populate its top-level list.
- *{ action=android.app.action.VIEW
+ * { action=android.intent.action.VIEW
* data=content://com.google.provider.NotePad/notes }
* displays a list of all the notes under
* "content://com.google.provider.NotePad/notes", which
@@ -399,7 +399,7 @@ import java.util.Set;
* NoteEditor activity: { action=android.app.action.VIEW
+ * { action=android.intent.action.VIEW
* data=content://com.google.provider.NotePad/notes/{ID} }
* shows the user the content of note {ID}. { action=android.app.action.EDIT
- *