diff options
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/content/Intent.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index f4ae2c512c88..8a8dfd197157 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -849,6 +849,21 @@ public class Intent implements Parcelable, Cloneable { = "android.intent.action.SHOW_APP_INFO"; /** + * Activity Action: Placeholder that the component handling it can do activity + * recognition. Can be placed on a service. Only one service per package is + * supported. + * + * <p>Input: Nothing.</p> + * <p>Output: Nothing </p> + * + * @hide + */ + @SystemApi + @SdkConstant(SdkConstantType.SERVICE_ACTION) + public static final String ACTION_ACTIVITY_RECOGNIZER = + "android.intent.action.ACTIVITY_RECOGNIZER"; + + /** * Represents a shortcut/live folder icon resource. * * @see Intent#ACTION_CREATE_SHORTCUT |
