Home | History | Annotate | Download | only in content

Lines Matching defs:ACTION_VIEW

107  *     {@link #ACTION_VIEW}, {@link #ACTION_EDIT}, {@link #ACTION_MAIN},
119 * <li> <p><b>{@link #ACTION_VIEW} <i>content://contacts/people/1</i></b> -- Display
125 * <li> <p><b>{@link #ACTION_VIEW} <i>tel:123</i></b> -- Display
136 * <li> <p><b>{@link #ACTION_VIEW} <i>content://contacts/people/</i></b> -- Display
140 * new intent { <b>{@link #ACTION_VIEW} <i>content://contacts/people/N</i></b> }
199 * example, the standard {@link #ACTION_VIEW} is called
347 * &lt;action android:name="{@link #ACTION_VIEW android.intent.action.VIEW}" /&gt;
415 * &lt;action android:name="{@link #ACTION_VIEW android.intent.action.VIEW}" /&gt;
513 * <li> {@link #ACTION_VIEW}
664 public static final String ACTION_VIEW = "android.intent.action.VIEW";
669 * it may use {@link #ACTION_VIEW} with a "image/*" MIME type to have an app show
677 * A synonym for {@link #ACTION_VIEW}, the "standard" action that is
680 public static final String ACTION_DEFAULT = ACTION_VIEW;
1621 * {@link #ACTION_VIEW} to indicate the URI from which the local APK in the Intent
1659 * {@link #ACTION_VIEW} to indicate the uid of the package that initiated the install
4058 * should not be a generic action (such as {@link #ACTION_VIEW}, but rather
5881 * <tr><td>Action: </td><td>{@link #ACTION_VIEW}</td></tr>
5888 * <tr><td>Action: </td><td>{@link #ACTION_VIEW}</td></tr>
6038 * @param action The Intent action, such as ACTION_VIEW.
6057 * @param action The Intent action, such as ACTION_VIEW.
6097 * @param action The Intent action, such as ACTION_VIEW.
6209 * will be the entire URI and its action will be ACTION_VIEW.
6233 Intent intent = new Intent(ACTION_VIEW);
6247 return new Intent(ACTION_VIEW, Uri.parse(uri));
6260 Intent intent = new Intent(ACTION_VIEW);
6592 intent.mAction = ACTION_VIEW;
6596 intent = new Intent(ACTION_VIEW, Uri.parse(uri));
7051 * {@link #ACTION_VIEW}. The action describes the general way the rest of
8003 * @param action An action name, such as ACTION_VIEW. Application-specific
9801 toUriFragment(uri, null, scheme == null ? Intent.ACTION_MAIN : Intent.ACTION_VIEW,
9834 toUriFragment(uri, scheme, Intent.ACTION_VIEW, null, flags);
10301 return ACTION_VIEW.equals(mAction)