Lines Matching defs:ACTION_VIEW

98  *     {@link #ACTION_VIEW}, {@link #ACTION_EDIT}, {@link #ACTION_MAIN},
110 * <li> <p><b>{@link #ACTION_VIEW} <i>content://contacts/people/1</i></b> -- Display
116 * <li> <p><b>{@link #ACTION_VIEW} <i>tel:123</i></b> -- Display
127 * <li> <p><b>{@link #ACTION_VIEW} <i>content://contacts/people/</i></b> -- Display
131 * new intent { <b>{@link #ACTION_VIEW} <i>content://contacts/N</i></b> }
190 * example, the standard {@link #ACTION_VIEW} is called
338 * &lt;action android:name="{@link #ACTION_VIEW android.intent.action.VIEW}" /&gt;
406 * &lt;action android:name="{@link #ACTION_VIEW android.intent.action.VIEW}" /&gt;
504 * <li> {@link #ACTION_VIEW}
652 public static final String ACTION_VIEW = "android.intent.action.VIEW";
655 * A synonym for {@link #ACTION_VIEW}, the "standard" action that is
658 public static final String ACTION_DEFAULT = ACTION_VIEW;
1436 * {@link #ACTION_VIEW} to indicate the URI from which the local APK in the Intent
1474 * {@link} #ACTION_VIEW} to indicate the uid of the package that initiated the install
3035 * should not be a generic action (such as {@link #ACTION_VIEW}, but rather
4271 * <tr><td>Action: </td><td>{@link #ACTION_VIEW}</td></tr>
4278 * <tr><td>Action: </td><td>{@link #ACTION_VIEW}</td></tr>
4405 * @param action The Intent action, such as ACTION_VIEW.
4424 * @param action The Intent action, such as ACTION_VIEW.
4464 * @param action The Intent action, such as ACTION_VIEW.
4576 * will be the entire URI and its action will be ACTION_VIEW.
4601 Intent intent = new Intent(ACTION_VIEW);
4615 return new Intent(ACTION_VIEW, Uri.parse(uri));
4628 Intent intent = new Intent(ACTION_VIEW);
4960 intent.mAction = ACTION_VIEW;
4964 intent = new Intent(ACTION_VIEW, Uri.parse(uri));
4972 * {@link #ACTION_VIEW}. The action describes the general way the rest of
5877 * @param action An action name, such as ACTION_VIEW. Application-specific
7633 toUriFragment(uri, null, scheme == null ? Intent.ACTION_MAIN : Intent.ACTION_VIEW,
7666 toUriFragment(uri, scheme, Intent.ACTION_VIEW, null, flags);
8042 if (ACTION_VIEW.equals(mAction) ||