This enum contains all the possible prefixes for the .
Intent
Namespace: RegawMOD.Android
Assembly: AndroidLib (in AndroidLib.dll) Version: 1.5.2.0 (1.5.2.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Action | 0 | Specifies the intent action, such as "android.intent.action.VIEW" You can declare this only once. | |
DataUri | 1 | Specify the intent data URI, such as "content://contacts/people/1". You can declare this only once. | |
MimeType | 2 | Specify the intent MIME type, such as "image/png". You can declare this only once. | |
Category | 3 | Specify an intent category, such as "android.intent.category.APP_CONTACTS". | |
Component | 4 | Specifiy the component name with package name prefix to create an explicit intent, such as "com.example.app/.ExampleActiviy". | |
Flags | 5 | Add flags to the intent. | |
ExtraKey | 6 | Add a null extra. This option is not supported for URI intents. | |
ExtraKey_ExtraStringValue | 7 | Add string data as a key-value pair. | |
ExtraKey_ExtraBooleanValue | 8 | Add boolean data as a key-value pair. | |
ExtraKey_ExtraIntValue | 9 | Add integer data as a key-value pair. | |
ExtraKey_ExtraLongValue | 10 | Add long data as a key-value pair. | |
ExtraKey_ExtraFloatValue | 11 | Add float data as a key-value pair. | |
ExtraKey_ExtraUriValue | 12 | Add URI data as a key-value pair. | |
ExtraKey_ExtraComponentNameValue | 13 | Add a component name, which is converted and passed as an Android ComponentName object | |
ExtraKey_ExtraIntArrayValue | 14 | Add an array of integers. | |
ExtraKey_ExtraLongArrayValue | 15 | Add an array of longs. | |
ExtraKey_ExtraFloatArrayValue | 16 | Add an array of floats. | |
GrantReadUriPermission | 17 | Include the flag FLAG_GRANT_READ_URI_PERMISSION | |
GrantWriteUriPermission | 18 | Include the flag FLAG_GRANT_WRITE_URI_PERMISSION | |
DebugLogResolution | 19 | Include the flag FLAG_DEBUG_LOG_RESOLUTION | |
ExcludeStoppedPackages | 20 | Includes the flag FLAG_EXCLUDE_STOPPED_PACKAGES | |
IncludeStoppedPackages | 21 | Includes the flag FLAG_INCLUDE_STOPPED_PACKAGES | |
ActivityBroughtToFront | 22 | Includes the flag FLAG_ACTIVITY_BROUGHT_TO_FRONT | |
ActivityClearTop | 23 | Includes the flag FLAG_ACTIVITY_CLEAR_TOP | |
ActivityClearWhenTaskReset | 24 | Includes the flag FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET | |
ActivityExcludeFromRecents | 25 | Includes the flag FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS | |
ActivityLaunchedFromRecents | 26 | Includes the flag FLAG_ACTIVITY_LAUNCHED_FROM_RECENTS | |
ActivityMultipleTask | 27 | Includes the flag FLAG_ACTIVITY_MULTIPLE_TASK | |
ActivityNoAnimation | 28 | Includes flag FLAG_ACTIVITY_NO_ANIMATION | |
ActivityNoHistory | 29 | Includes flag FLAG_ACTIVITY_NO_HISTORY | |
ActivityNoUserAction | 30 | Includes flag FLAG_ACTIVITY_NO_USER_ACTION | |
ActivityPreviousIsTop | 31 | Includes flag FLAG_ACTIVITY_PREVIOUS_IS_TOP | |
ActivityReorderToFront | 32 | Includes flag FLAG_ACTIVITY_REORDER_TO_FRONT | |
ActivityResetTaskIfNeeded | 33 | Includes flag FLAG_ACTIVITY_RESET_TASK_IF_NEEDED | |
ActivitySingleTop | 34 | Includes flag FLAG_ACTIVITY_SINGLE_TOP | |
ActivityClearTask | 35 | Includes flag FLAG_ACTIVITY_CLEAR_TASK | |
ActivityTaskOnHome | 36 | Includes flag FLAG_ACTIVITY_TASK_ON_HOME | |
ReceiverRegisteredOnly | 37 | Includes flag FLAG_RECEIVER_REGISTERED_ONLY | |
ReceiverReplacePending | 38 | Includes flag FLAG_RECEIVER_REPLACE_PENDING | |
Selector | 39 | Requires the use of DataUri (-d) and MimeType (-t) options to set the intent data and type. |
See Also