IntentArgumentArgumentPrefix Enumeration AndroidLib - Beatsleigher Edition
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

public enum ArgumentPrefix
Members

  Member nameValueDescription
Action0 Specifies the intent action, such as "android.intent.action.VIEW" You can declare this only once.
DataUri1 Specify the intent data URI, such as "content://contacts/people/1". You can declare this only once.
MimeType2 Specify the intent MIME type, such as "image/png". You can declare this only once.
Category3 Specify an intent category, such as "android.intent.category.APP_CONTACTS".
Component4 Specifiy the component name with package name prefix to create an explicit intent, such as "com.example.app/.ExampleActiviy".
Flags5 Add flags to the intent.
ExtraKey6 Add a null extra. This option is not supported for URI intents.
ExtraKey_ExtraStringValue7 Add string data as a key-value pair.
ExtraKey_ExtraBooleanValue8 Add boolean data as a key-value pair.
ExtraKey_ExtraIntValue9 Add integer data as a key-value pair.
ExtraKey_ExtraLongValue10 Add long data as a key-value pair.
ExtraKey_ExtraFloatValue11 Add float data as a key-value pair.
ExtraKey_ExtraUriValue12 Add URI data as a key-value pair.
ExtraKey_ExtraComponentNameValue13 Add a component name, which is converted and passed as an Android ComponentName object
ExtraKey_ExtraIntArrayValue14 Add an array of integers.
ExtraKey_ExtraLongArrayValue15 Add an array of longs.
ExtraKey_ExtraFloatArrayValue16 Add an array of floats.
GrantReadUriPermission17 Include the flag FLAG_GRANT_READ_URI_PERMISSION
GrantWriteUriPermission18 Include the flag FLAG_GRANT_WRITE_URI_PERMISSION
DebugLogResolution19 Include the flag FLAG_DEBUG_LOG_RESOLUTION
ExcludeStoppedPackages20 Includes the flag FLAG_EXCLUDE_STOPPED_PACKAGES
IncludeStoppedPackages21 Includes the flag FLAG_INCLUDE_STOPPED_PACKAGES
ActivityBroughtToFront22 Includes the flag FLAG_ACTIVITY_BROUGHT_TO_FRONT
ActivityClearTop23 Includes the flag FLAG_ACTIVITY_CLEAR_TOP
ActivityClearWhenTaskReset24 Includes the flag FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET
ActivityExcludeFromRecents25 Includes the flag FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
ActivityLaunchedFromRecents26 Includes the flag FLAG_ACTIVITY_LAUNCHED_FROM_RECENTS
ActivityMultipleTask27 Includes the flag FLAG_ACTIVITY_MULTIPLE_TASK
ActivityNoAnimation28 Includes flag FLAG_ACTIVITY_NO_ANIMATION
ActivityNoHistory29 Includes flag FLAG_ACTIVITY_NO_HISTORY
ActivityNoUserAction30 Includes flag FLAG_ACTIVITY_NO_USER_ACTION
ActivityPreviousIsTop31 Includes flag FLAG_ACTIVITY_PREVIOUS_IS_TOP
ActivityReorderToFront32 Includes flag FLAG_ACTIVITY_REORDER_TO_FRONT
ActivityResetTaskIfNeeded33 Includes flag FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
ActivitySingleTop34 Includes flag FLAG_ACTIVITY_SINGLE_TOP
ActivityClearTask35 Includes flag FLAG_ACTIVITY_CLEAR_TASK
ActivityTaskOnHome36 Includes flag FLAG_ACTIVITY_TASK_ON_HOME
ReceiverRegisteredOnly37 Includes flag FLAG_RECEIVER_REGISTERED_ONLY
ReceiverReplacePending38 Includes flag FLAG_RECEIVER_REPLACE_PENDING
Selector39 Requires the use of DataUri (-d) and MimeType (-t) options to set the intent data and type.
See Also

Reference