Class AN_Intent
An intent is an abstract description of an operation to be performed.
It can be used with startActivity to launch an Activity, broadcastIntent to send it to any interested BroadcastReceiver components, and Context.startService(Intent) or Context.bindService(Intent, ServiceConnection, int) to communicate with a background Service.
Inheritance
System.Object
AN_Intent
Assembly: cs.temp.dll.dll
Syntax
public class AN_Intent : AN_LinkedObject
Constructors
AN_Intent()
Declaration
AN_Intent(AN_Intent)
Declaration
public AN_Intent(AN_Intent o)
Parameters
AN_Intent(Int32)
For plugin internal use only.
This constructor will link C# Intent with Intent class that was created with Java native side
Declaration
public AN_Intent(int hashCode)
Parameters
Type |
Name |
Description |
System.Int32 |
hashCode |
|
AN_Intent(String)
Create an intent with a given action.
All other fields (data, type, class) are null.
Note that the action must be in a namespace because Intents are used globally in the system.
For example the system VIEW action is ACTION_VIEW;
an application's custom action would be something like com.google.app.myapp.CUSTOM_ACTION.
Declaration
public AN_Intent(string action)
Parameters
Type |
Name |
Description |
System.String |
action |
An action name, such as ACTION_VIEW. Application-specific actions should be prefixed with the vendor's package name.
|
AN_Intent(String, Uri)
Create an intent with a given action and for a given data url.
Note that the action must be in a namespace because Intents are used globally in the system
for example the system VIEW action is ACTION_VIEW an application's custom action
would be something like com.google.app.myapp.CUSTOM_ACTION.
Note: scheme and host name matching in the Android framework is case-sensitive,
unlike the formal RFC.As a result, you should always ensure that you write your Uri with these elements using lower case letters,
and normalize any Uris you receive from outside of Android to ensure the scheme and host is lower case.
Declaration
public AN_Intent(string action, Uri uri)
Parameters
Type |
Name |
Description |
System.String |
action |
An action name, such as ACTION_VIEW. Application-specific actions should be prefixed with the vendor's package name.
|
Uri |
uri |
|
Fields
ACTION_AIRPLANE_MODE_CHANGED
Declaration
public const string ACTION_AIRPLANE_MODE_CHANGED = "android.intent.action.AIRPLANE_MODE"
Field Value
Type |
Description |
System.String |
|
ACTION_ALL_APPS
Declaration
public const string ACTION_ALL_APPS = "android.intent.action.ALL_APPS"
Field Value
Type |
Description |
System.String |
|
ACTION_ANSWER
Declaration
public const string ACTION_ANSWER = "android.intent.action.ANSWER"
Field Value
Type |
Description |
System.String |
|
ACTION_APP_ERROR
Declaration
public const string ACTION_APP_ERROR = "android.intent.action.APP_ERROR"
Field Value
Type |
Description |
System.String |
|
ACTION_APPLICATION_PREFERENCES
Declaration
public const string ACTION_APPLICATION_PREFERENCES = "android.intent.action.APPLICATION_PREFERENCES"
Field Value
Type |
Description |
System.String |
|
ACTION_APPLICATION_RESTRICTIONS_CHANGED
Declaration
public const string ACTION_APPLICATION_RESTRICTIONS_CHANGED = "android.intent.action.APPLICATION_RESTRICTIONS_CHANGED"
Field Value
Type |
Description |
System.String |
|
ACTION_ASSIST
Declaration
public const string ACTION_ASSIST = "android.intent.action.ASSIST"
Field Value
Type |
Description |
System.String |
|
ACTION_ATTACH_DATA
Declaration
public const string ACTION_ATTACH_DATA = "android.intent.action.ATTACH_DATA"
Field Value
Type |
Description |
System.String |
|
ACTION_BATTERY_CHANGED
Declaration
public const string ACTION_BATTERY_CHANGED = "android.intent.action.BATTERY_CHANGED"
Field Value
Type |
Description |
System.String |
|
ACTION_BATTERY_LOW
Declaration
public const string ACTION_BATTERY_LOW = "android.intent.action.BATTERY_LOW"
Field Value
Type |
Description |
System.String |
|
ACTION_BATTERY_OKAY
Declaration
public const string ACTION_BATTERY_OKAY = "android.intent.action.BATTERY_OKAY"
Field Value
Type |
Description |
System.String |
|
ACTION_BOOT_COMPLETED
Declaration
public const string ACTION_BOOT_COMPLETED = "android.intent.action.BOOT_COMPLETED"
Field Value
Type |
Description |
System.String |
|
ACTION_BUG_REPORT
Declaration
public const string ACTION_BUG_REPORT = "android.intent.action.BUG_REPORT"
Field Value
Type |
Description |
System.String |
|
ACTION_CALL
Declaration
public const string ACTION_CALL = "android.intent.action.CALL"
Field Value
Type |
Description |
System.String |
|
ACTION_CALL_BUTTON
Declaration
public const string ACTION_CALL_BUTTON = "android.intent.action.CALL_BUTTON"
Field Value
Type |
Description |
System.String |
|
ACTION_CAMERA_BUTTON
Declaration
public const string ACTION_CAMERA_BUTTON = "android.intent.action.CAMERA_BUTTON"
Field Value
Type |
Description |
System.String |
|
ACTION_CARRIER_SETUP
Declaration
public const string ACTION_CARRIER_SETUP = "android.intent.action.CARRIER_SETUP"
Field Value
Type |
Description |
System.String |
|
ACTION_CHOOSER
Declaration
public const string ACTION_CHOOSER = "android.intent.action.CHOOSER"
Field Value
Type |
Description |
System.String |
|
ACTION_CLOSE_SYSTEM_DIALOGS
Declaration
public const string ACTION_CLOSE_SYSTEM_DIALOGS = "android.intent.action.CLOSE_SYSTEM_DIALOGS"
Field Value
Type |
Description |
System.String |
|
ACTION_CONFIGURATION_CHANGED
Declaration
public const string ACTION_CONFIGURATION_CHANGED = "android.intent.action.CONFIGURATION_CHANGED"
Field Value
Type |
Description |
System.String |
|
ACTION_CREATE_DOCUMENT
Declaration
public const string ACTION_CREATE_DOCUMENT = "android.intent.action.CREATE_DOCUMENT"
Field Value
Type |
Description |
System.String |
|
ACTION_CREATE_SHORTCUT
Declaration
public const string ACTION_CREATE_SHORTCUT = "android.intent.action.CREATE_SHORTCUT"
Field Value
Type |
Description |
System.String |
|
ACTION_DATE_CHANGED
Declaration
public const string ACTION_DATE_CHANGED = "android.intent.action.DATE_CHANGED"
Field Value
Type |
Description |
System.String |
|
ACTION_DEFAULT
Declaration
public const string ACTION_DEFAULT = "android.intent.action.VIEW"
Field Value
Type |
Description |
System.String |
|
ACTION_DELETE
Declaration
public const string ACTION_DELETE = "android.intent.action.DELETE"
Field Value
Type |
Description |
System.String |
|
ACTION_DIAL
Declaration
public const string ACTION_DIAL = "android.intent.action.DIAL"
Field Value
Type |
Description |
System.String |
|
ACTION_DOCK_EVENT
Declaration
public const string ACTION_DOCK_EVENT = "android.intent.action.DOCK_EVENT"
Field Value
Type |
Description |
System.String |
|
ACTION_DREAMING_STARTED
Declaration
public const string ACTION_DREAMING_STARTED = "android.intent.action.DREAMING_STARTED"
Field Value
Type |
Description |
System.String |
|
ACTION_DREAMING_STOPPED
Declaration
public const string ACTION_DREAMING_STOPPED = "android.intent.action.DREAMING_STOPPED"
Field Value
Type |
Description |
System.String |
|
ACTION_EDIT
Declaration
public const string ACTION_EDIT = "android.intent.action.EDIT"
Field Value
Type |
Description |
System.String |
|
ACTION_EXTERNAL_APPLICATIONS_AVAILABLE
Declaration
public const string ACTION_EXTERNAL_APPLICATIONS_AVAILABLE = "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"
Field Value
Type |
Description |
System.String |
|
ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE
Declaration
public const string ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE = "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE"
Field Value
Type |
Description |
System.String |
|
ACTION_FACTORY_TEST
Declaration
public const string ACTION_FACTORY_TEST = "android.intent.action.FACTORY_TEST"
Field Value
Type |
Description |
System.String |
|
ACTION_GET_CONTENT
Declaration
public const string ACTION_GET_CONTENT = "android.intent.action.GET_CONTENT"
Field Value
Type |
Description |
System.String |
|
ACTION_GET_RESTRICTION_ENTRIES
Declaration
public const string ACTION_GET_RESTRICTION_ENTRIES = "android.intent.action.GET_RESTRICTION_ENTRIES"
Field Value
Type |
Description |
System.String |
|
ACTION_GTALK_SERVICE_CONNECTED
Declaration
public const string ACTION_GTALK_SERVICE_CONNECTED = "android.intent.action.GTALK_CONNECTED"
Field Value
Type |
Description |
System.String |
|
ACTION_GTALK_SERVICE_DISCONNECTED
Declaration
public const string ACTION_GTALK_SERVICE_DISCONNECTED = "android.intent.action.GTALK_DISCONNECTED"
Field Value
Type |
Description |
System.String |
|
ACTION_HEADSET_PLUG
Declaration
public const string ACTION_HEADSET_PLUG = "android.intent.action.HEADSET_PLUG"
Field Value
Type |
Description |
System.String |
|
ACTION_INPUT_METHOD_CHANGED
Declaration
public const string ACTION_INPUT_METHOD_CHANGED = "android.intent.action.INPUT_METHOD_CHANGED"
Field Value
Type |
Description |
System.String |
|
ACTION_INSERT
Declaration
public const string ACTION_INSERT = "android.intent.action.INSERT"
Field Value
Type |
Description |
System.String |
|
ACTION_INSERT_OR_EDIT
Declaration
public const string ACTION_INSERT_OR_EDIT = "android.intent.action.INSERT_OR_EDIT"
Field Value
Type |
Description |
System.String |
|
ACTION_INSTALL_PACKAGE
Declaration
public const string ACTION_INSTALL_PACKAGE = "android.intent.action.INSTALL_PACKAGE"
Field Value
Type |
Description |
System.String |
|
ACTION_LOCALE_CHANGED
Declaration
public const string ACTION_LOCALE_CHANGED = "android.intent.action.LOCALE_CHANGED"
Field Value
Type |
Description |
System.String |
|
ACTION_LOCKED_BOOT_COMPLETED
Declaration
public const string ACTION_LOCKED_BOOT_COMPLETED = "android.intent.action.LOCKED_BOOT_COMPLETED"
Field Value
Type |
Description |
System.String |
|
ACTION_MAIN
Declaration
public const string ACTION_MAIN = "android.intent.action.MAIN"
Field Value
Type |
Description |
System.String |
|
ACTION_MANAGE_NETWORK_USAGE
Declaration
public const string ACTION_MANAGE_NETWORK_USAGE = "android.intent.action.MANAGE_NETWORK_USAGE"
Field Value
Type |
Description |
System.String |
|
ACTION_MANAGE_PACKAGE_STORAGE
Declaration
public const string ACTION_MANAGE_PACKAGE_STORAGE = "android.intent.action.MANAGE_PACKAGE_STORAGE"
Field Value
Type |
Description |
System.String |
|
ACTION_MANAGED_PROFILE_ADDED
Declaration
public const string ACTION_MANAGED_PROFILE_ADDED = "android.intent.action.MANAGED_PROFILE_ADDED"
Field Value
Type |
Description |
System.String |
|
ACTION_MANAGED_PROFILE_AVAILABLE
Declaration
public const string ACTION_MANAGED_PROFILE_AVAILABLE = "android.intent.action.MANAGED_PROFILE_AVAILABLE"
Field Value
Type |
Description |
System.String |
|
ACTION_MANAGED_PROFILE_REMOVED
Declaration
public const string ACTION_MANAGED_PROFILE_REMOVED = "android.intent.action.MANAGED_PROFILE_REMOVED"
Field Value
Type |
Description |
System.String |
|
ACTION_MANAGED_PROFILE_UNAVAILABLE
Declaration
public const string ACTION_MANAGED_PROFILE_UNAVAILABLE = "android.intent.action.MANAGED_PROFILE_UNAVAILABLE"
Field Value
Type |
Description |
System.String |
|
ACTION_MANAGED_PROFILE_UNLOCKED
Declaration
public const string ACTION_MANAGED_PROFILE_UNLOCKED = "android.intent.action.MANAGED_PROFILE_UNLOCKED"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_BAD_REMOVAL
Declaration
public const string ACTION_MEDIA_BAD_REMOVAL = "android.intent.action.MEDIA_BAD_REMOVAL"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_BUTTON
Declaration
public const string ACTION_MEDIA_BUTTON = "android.intent.action.MEDIA_BUTTON"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_CHECKING
Declaration
public const string ACTION_MEDIA_CHECKING = "android.intent.action.MEDIA_CHECKING"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_EJECT
Declaration
public const string ACTION_MEDIA_EJECT = "android.intent.action.MEDIA_EJECT"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_MOUNTED
Declaration
public const string ACTION_MEDIA_MOUNTED = "android.intent.action.MEDIA_MOUNTED"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_NOFS
Declaration
public const string ACTION_MEDIA_NOFS = "android.intent.action.MEDIA_NOFS"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_REMOVED
Declaration
public const string ACTION_MEDIA_REMOVED = "android.intent.action.MEDIA_REMOVED"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_SCANNER_FINISHED
Declaration
public const string ACTION_MEDIA_SCANNER_FINISHED = "android.intent.action.MEDIA_SCANNER_FINISHED"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_SCANNER_SCAN_FILE
Declaration
public const string ACTION_MEDIA_SCANNER_SCAN_FILE = "android.intent.action.MEDIA_SCANNER_SCAN_FILE"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_SCANNER_STARTED
Declaration
public const string ACTION_MEDIA_SCANNER_STARTED = "android.intent.action.MEDIA_SCANNER_STARTED"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_SHARED
Declaration
public const string ACTION_MEDIA_SHARED = "android.intent.action.MEDIA_SHARED"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_UNMOUNTABLE
Declaration
public const string ACTION_MEDIA_UNMOUNTABLE = "android.intent.action.MEDIA_UNMOUNTABLE"
Field Value
Type |
Description |
System.String |
|
ACTION_MEDIA_UNMOUNTED
Declaration
public const string ACTION_MEDIA_UNMOUNTED = "android.intent.action.MEDIA_UNMOUNTED"
Field Value
Type |
Description |
System.String |
|
ACTION_MY_PACKAGE_REPLACED
Declaration
public const string ACTION_MY_PACKAGE_REPLACED = "android.intent.action.MY_PACKAGE_REPLACED"
Field Value
Type |
Description |
System.String |
|
ACTION_NEW_OUTGOING_CALL
Declaration
public const string ACTION_NEW_OUTGOING_CALL = "android.intent.action.NEW_OUTGOING_CALL"
Field Value
Type |
Description |
System.String |
|
ACTION_OPEN_DOCUMENT
Declaration
public const string ACTION_OPEN_DOCUMENT = "android.intent.action.OPEN_DOCUMENT"
Field Value
Type |
Description |
System.String |
|
ACTION_OPEN_DOCUMENT_TREE
Declaration
public const string ACTION_OPEN_DOCUMENT_TREE = "android.intent.action.OPEN_DOCUMENT_TREE"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_ADDED
Declaration
public const string ACTION_PACKAGE_ADDED = "android.intent.action.PACKAGE_ADDED"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_CHANGED
Declaration
public const string ACTION_PACKAGE_CHANGED = "android.intent.action.PACKAGE_CHANGED"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_DATA_CLEARED
Declaration
public const string ACTION_PACKAGE_DATA_CLEARED = "android.intent.action.PACKAGE_DATA_CLEARED"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_FIRST_LAUNCH
Declaration
public const string ACTION_PACKAGE_FIRST_LAUNCH = "android.intent.action.PACKAGE_FIRST_LAUNCH"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_FULLY_REMOVED
Declaration
public const string ACTION_PACKAGE_FULLY_REMOVED = "android.intent.action.PACKAGE_FULLY_REMOVED"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_INSTALL
Declaration
public const string ACTION_PACKAGE_INSTALL = "android.intent.action.PACKAGE_INSTALL"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_NEEDS_VERIFICATION
Declaration
public const string ACTION_PACKAGE_NEEDS_VERIFICATION = "android.intent.action.PACKAGE_NEEDS_VERIFICATION"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_REMOVED
Declaration
public const string ACTION_PACKAGE_REMOVED = "android.intent.action.PACKAGE_REMOVED"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_REPLACED
Declaration
public const string ACTION_PACKAGE_REPLACED = "android.intent.action.PACKAGE_REPLACED"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_RESTARTED
Declaration
public const string ACTION_PACKAGE_RESTARTED = "android.intent.action.PACKAGE_RESTARTED"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGE_VERIFIED
Declaration
public const string ACTION_PACKAGE_VERIFIED = "android.intent.action.PACKAGE_VERIFIED"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGES_SUSPENDED
Declaration
public const string ACTION_PACKAGES_SUSPENDED = "android.intent.action.PACKAGES_SUSPENDED"
Field Value
Type |
Description |
System.String |
|
ACTION_PACKAGES_UNSUSPENDED
Declaration
public const string ACTION_PACKAGES_UNSUSPENDED = "android.intent.action.PACKAGES_UNSUSPENDED"
Field Value
Type |
Description |
System.String |
|
ACTION_PASTE
Declaration
public const string ACTION_PASTE = "android.intent.action.PASTE"
Field Value
Type |
Description |
System.String |
|
ACTION_PICK
Declaration
public const string ACTION_PICK = "android.intent.action.PICK"
Field Value
Type |
Description |
System.String |
|
ACTION_PICK_ACTIVITY
Declaration
public const string ACTION_PICK_ACTIVITY = "android.intent.action.PICK_ACTIVITY"
Field Value
Type |
Description |
System.String |
|
ACTION_POWER_CONNECTED
Declaration
public const string ACTION_POWER_CONNECTED = "android.intent.action.ACTION_POWER_CONNECTED"
Field Value
Type |
Description |
System.String |
|
ACTION_POWER_DISCONNECTED
Declaration
public const string ACTION_POWER_DISCONNECTED = "android.intent.action.ACTION_POWER_DISCONNECTED"
Field Value
Type |
Description |
System.String |
|
ACTION_POWER_USAGE_SUMMARY
Declaration
public const string ACTION_POWER_USAGE_SUMMARY = "android.intent.action.POWER_USAGE_SUMMARY"
Field Value
Type |
Description |
System.String |
|
ACTION_PROCESS_TEXT
Declaration
public const string ACTION_PROCESS_TEXT = "android.intent.action.PROCESS_TEXT"
Field Value
Type |
Description |
System.String |
|
ACTION_PROVIDER_CHANGED
Declaration
public const string ACTION_PROVIDER_CHANGED = "android.intent.action.PROVIDER_CHANGED"
Field Value
Type |
Description |
System.String |
|
ACTION_QUICK_CLOCK
Declaration
public const string ACTION_QUICK_CLOCK = "android.intent.action.QUICK_CLOCK"
Field Value
Type |
Description |
System.String |
|
ACTION_QUICK_VIEW
Declaration
public const string ACTION_QUICK_VIEW = "android.intent.action.QUICK_VIEW"
Field Value
Type |
Description |
System.String |
|
ACTION_REBOOT
Declaration
public const string ACTION_REBOOT = "android.intent.action.REBOOT"
Field Value
Type |
Description |
System.String |
|
ACTION_RUN
Declaration
public const string ACTION_RUN = "android.intent.action.RUN"
Field Value
Type |
Description |
System.String |
|
ACTION_SCREEN_OFF
Declaration
public const string ACTION_SCREEN_OFF = "android.intent.action.SCREEN_OFF"
Field Value
Type |
Description |
System.String |
|
ACTION_SCREEN_ON
Declaration
public const string ACTION_SCREEN_ON = "android.intent.action.SCREEN_ON"
Field Value
Type |
Description |
System.String |
|
ACTION_SEARCH
Declaration
public const string ACTION_SEARCH = "android.intent.action.SEARCH"
Field Value
Type |
Description |
System.String |
|
ACTION_SEARCH_LONG_PRESS
Declaration
public const string ACTION_SEARCH_LONG_PRESS = "android.intent.action.SEARCH_LONG_PRESS"
Field Value
Type |
Description |
System.String |
|
ACTION_SEND
Declaration
public const string ACTION_SEND = "android.intent.action.SEND"
Field Value
Type |
Description |
System.String |
|
ACTION_SEND_MULTIPLE
Declaration
public const string ACTION_SEND_MULTIPLE = "android.intent.action.SEND_MULTIPLE"
Field Value
Type |
Description |
System.String |
|
ACTION_SENDTO
Declaration
public const string ACTION_SENDTO = "android.intent.action.SENDTO"
Field Value
Type |
Description |
System.String |
|
ACTION_SET_WALLPAPER
Declaration
public const string ACTION_SET_WALLPAPER = "android.intent.action.SET_WALLPAPER"
Field Value
Type |
Description |
System.String |
|
ACTION_SHOW_APP_INFO
Declaration
public const string ACTION_SHOW_APP_INFO = "android.intent.action.SHOW_APP_INFO"
Field Value
Type |
Description |
System.String |
|
ACTION_SHUTDOWN
Declaration
public const string ACTION_SHUTDOWN = "android.intent.action.ACTION_SHUTDOWN"
Field Value
Type |
Description |
System.String |
|
ACTION_SYNC
Declaration
public const string ACTION_SYNC = "android.intent.action.SYNC"
Field Value
Type |
Description |
System.String |
|
ACTION_SYSTEM_TUTORIAL
Declaration
public const string ACTION_SYSTEM_TUTORIAL = "android.intent.action.SYSTEM_TUTORIAL"
Field Value
Type |
Description |
System.String |
|
ACTION_TIME_CHANGED
Declaration
public const string ACTION_TIME_CHANGED = "android.intent.action.TIME_SET"
Field Value
Type |
Description |
System.String |
|
ACTION_TIME_TICK
Declaration
public const string ACTION_TIME_TICK = "android.intent.action.TIME_TICK"
Field Value
Type |
Description |
System.String |
|
ACTION_TIMEZONE_CHANGED
Declaration
public const string ACTION_TIMEZONE_CHANGED = "android.intent.action.TIMEZONE_CHANGED"
Field Value
Type |
Description |
System.String |
|
ACTION_UID_REMOVED
Declaration
public const string ACTION_UID_REMOVED = "android.intent.action.UID_REMOVED"
Field Value
Type |
Description |
System.String |
|
ACTION_UNINSTALL_PACKAGE
Declaration
public const string ACTION_UNINSTALL_PACKAGE = "android.intent.action.UNINSTALL_PACKAGE"
Field Value
Type |
Description |
System.String |
|
ACTION_USER_BACKGROUND
Declaration
public const string ACTION_USER_BACKGROUND = "android.intent.action.USER_BACKGROUND"
Field Value
Type |
Description |
System.String |
|
ACTION_USER_FOREGROUND
Declaration
public const string ACTION_USER_FOREGROUND = "android.intent.action.USER_FOREGROUND"
Field Value
Type |
Description |
System.String |
|
ACTION_USER_INITIALIZE
Declaration
public const string ACTION_USER_INITIALIZE = "android.intent.action.USER_INITIALIZE"
Field Value
Type |
Description |
System.String |
|
ACTION_USER_PRESENT
Declaration
public const string ACTION_USER_PRESENT = "android.intent.action.USER_PRESENT"
Field Value
Type |
Description |
System.String |
|
ACTION_USER_UNLOCKED
Declaration
public const string ACTION_USER_UNLOCKED = "android.intent.action.USER_UNLOCKED"
Field Value
Type |
Description |
System.String |
|
ACTION_VIEW
Declaration
public const string ACTION_VIEW = "android.intent.action.VIEW"
Field Value
Type |
Description |
System.String |
|
ACTION_VOICE_COMMAND
Declaration
public const string ACTION_VOICE_COMMAND = "android.intent.action.VOICE_COMMAND"
Field Value
Type |
Description |
System.String |
|
ACTION_WEB_SEARCH
Declaration
public const string ACTION_WEB_SEARCH = "android.intent.action.WEB_SEARCH"
Field Value
Type |
Description |
System.String |
|
CATEGORY_ALTERNATIVE
Declaration
public const string CATEGORY_ALTERNATIVE = "android.intent.category.ALTERNATIVE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_BROWSER
Declaration
public const string CATEGORY_APP_BROWSER = "android.intent.category.APP_BROWSER"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_CALCULATOR
Declaration
public const string CATEGORY_APP_CALCULATOR = "android.intent.category.APP_CALCULATOR"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_CALENDAR
Declaration
public const string CATEGORY_APP_CALENDAR = "android.intent.category.APP_CALENDAR"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_CONTACTS
Declaration
public const string CATEGORY_APP_CONTACTS = "android.intent.category.APP_CONTACTS"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_EMAIL
Declaration
public const string CATEGORY_APP_EMAIL = "android.intent.category.APP_EMAIL"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_GALLERY
Declaration
public const string CATEGORY_APP_GALLERY = "android.intent.category.APP_GALLERY"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_MAPS
Declaration
public const string CATEGORY_APP_MAPS = "android.intent.category.APP_MAPS"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_MARKET
Declaration
public const string CATEGORY_APP_MARKET = "android.intent.category.APP_MARKET"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_MESSAGING
Declaration
public const string CATEGORY_APP_MESSAGING = "android.intent.category.APP_MESSAGING"
Field Value
Type |
Description |
System.String |
|
CATEGORY_APP_MUSIC
Declaration
public const string CATEGORY_APP_MUSIC = "android.intent.category.APP_MUSIC"
Field Value
Type |
Description |
System.String |
|
CATEGORY_BROWSABLE
Declaration
public const string CATEGORY_BROWSABLE = "android.intent.category.BROWSABLE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_CAR_DOCK
Declaration
public const string CATEGORY_CAR_DOCK = "android.intent.category.CAR_DOCK"
Field Value
Type |
Description |
System.String |
|
CATEGORY_CAR_MODE
Declaration
public const string CATEGORY_CAR_MODE = "android.intent.category.CAR_MODE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_DEFAULT
Declaration
public const string CATEGORY_DEFAULT = "android.intent.category.DEFAULT"
Field Value
Type |
Description |
System.String |
|
CATEGORY_DESK_DOCK
Declaration
public const string CATEGORY_DESK_DOCK = "android.intent.category.DESK_DOCK"
Field Value
Type |
Description |
System.String |
|
CATEGORY_DEVELOPMENT_PREFERENCE
Declaration
public const string CATEGORY_DEVELOPMENT_PREFERENCE = "android.intent.category.DEVELOPMENT_PREFERENCE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_EMBED
Declaration
public const string CATEGORY_EMBED = "android.intent.category.EMBED"
Field Value
Type |
Description |
System.String |
|
CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST
Declaration
public const string CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST = "android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST"
Field Value
Type |
Description |
System.String |
|
CATEGORY_HE_DESK_DOCK
Declaration
public const string CATEGORY_HE_DESK_DOCK = "android.intent.category.HE_DESK_DOCK"
Field Value
Type |
Description |
System.String |
|
CATEGORY_HOME
Declaration
public const string CATEGORY_HOME = "android.intent.category.HOME"
Field Value
Type |
Description |
System.String |
|
CATEGORY_INFO
Declaration
public const string CATEGORY_INFO = "android.intent.category.INFO"
Field Value
Type |
Description |
System.String |
|
CATEGORY_LAUNCHER
Declaration
public const string CATEGORY_LAUNCHER = "android.intent.category.LAUNCHER"
Field Value
Type |
Description |
System.String |
|
CATEGORY_LE_DESK_DOCK
Declaration
public const string CATEGORY_LE_DESK_DOCK = "android.intent.category.LE_DESK_DOCK"
Field Value
Type |
Description |
System.String |
|
CATEGORY_LEANBACK_LAUNCHER
Declaration
public const string CATEGORY_LEANBACK_LAUNCHER = "android.intent.category.LEANBACK_LAUNCHER"
Field Value
Type |
Description |
System.String |
|
CATEGORY_MONKEY
Declaration
public const string CATEGORY_MONKEY = "android.intent.category.MONKEY"
Field Value
Type |
Description |
System.String |
|
CATEGORY_OPENABLE
Declaration
public const string CATEGORY_OPENABLE = "android.intent.category.OPENABLE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_PREFERENCE
Declaration
public const string CATEGORY_PREFERENCE = "android.intent.category.PREFERENCE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_SAMPLE_CODE
Declaration
public const string CATEGORY_SAMPLE_CODE = "android.intent.category.SAMPLE_CODE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_SELECTED_ALTERNATIVE
Declaration
public const string CATEGORY_SELECTED_ALTERNATIVE = "android.intent.category.SELECTED_ALTERNATIVE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_TAB
Declaration
public const string CATEGORY_TAB = "android.intent.category.TAB"
Field Value
Type |
Description |
System.String |
|
CATEGORY_TEST
Declaration
public const string CATEGORY_TEST = "android.intent.category.TEST"
Field Value
Type |
Description |
System.String |
|
CATEGORY_TYPED_OPENABLE
Declaration
public const string CATEGORY_TYPED_OPENABLE = "android.intent.category.TYPED_OPENABLE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_UNIT_TEST
Declaration
public const string CATEGORY_UNIT_TEST = "android.intent.category.UNIT_TEST"
Field Value
Type |
Description |
System.String |
|
CATEGORY_VOICE
Declaration
public const string CATEGORY_VOICE = "android.intent.category.VOICE"
Field Value
Type |
Description |
System.String |
|
CATEGORY_VR_HOME
Declaration
public const string CATEGORY_VR_HOME = "android.intent.category.VR_HOME"
Field Value
Type |
Description |
System.String |
|
EXTRA_ALARM_COUNT
Declaration
public const string EXTRA_ALARM_COUNT = "android.intent.extra.ALARM_COUNT"
Field Value
Type |
Description |
System.String |
|
EXTRA_ALLOW_MULTIPLE
Declaration
public const string EXTRA_ALLOW_MULTIPLE = "android.intent.extra.ALLOW_MULTIPLE"
Field Value
Type |
Description |
System.String |
|
EXTRA_ALTERNATE_INTENTS
Declaration
public const string EXTRA_ALTERNATE_INTENTS = "android.intent.extra.ALTERNATE_INTENTS"
Field Value
Type |
Description |
System.String |
|
EXTRA_ASSIST_CONTEXT
Declaration
public const string EXTRA_ASSIST_CONTEXT = "android.intent.extra.ASSIST_CONTEXT"
Field Value
Type |
Description |
System.String |
|
EXTRA_ASSIST_INPUT_DEVICE_ID
Declaration
public const string EXTRA_ASSIST_INPUT_DEVICE_ID = "android.intent.extra.ASSIST_INPUT_DEVICE_ID"
Field Value
Type |
Description |
System.String |
|
EXTRA_ASSIST_INPUT_HINT_KEYBOARD
Declaration
public const string EXTRA_ASSIST_INPUT_HINT_KEYBOARD = "android.intent.extra.ASSIST_INPUT_HINT_KEYBOARD"
Field Value
Type |
Description |
System.String |
|
EXTRA_ASSIST_PACKAGE
Declaration
public const string EXTRA_ASSIST_PACKAGE = "android.intent.extra.ASSIST_PACKAGE"
Field Value
Type |
Description |
System.String |
|
EXTRA_ASSIST_UID
Declaration
public const string EXTRA_ASSIST_UID = "android.intent.extra.ASSIST_UID"
Field Value
Type |
Description |
System.String |
|
EXTRA_BCC
Declaration
public const string EXTRA_BCC = "android.intent.extra.BCC"
Field Value
Type |
Description |
System.String |
|
EXTRA_BUG_REPORT
Declaration
public const string EXTRA_BUG_REPORT = "android.intent.extra.BUG_REPORT"
Field Value
Type |
Description |
System.String |
|
EXTRA_CC
Declaration
public const string EXTRA_CC = "android.intent.extra.CC"
Field Value
Type |
Description |
System.String |
|
EXTRA_CHANGED_COMPONENT_NAME_LIST
Declaration
public const string EXTRA_CHANGED_COMPONENT_NAME_LIST = "android.intent.extra.changed_component_name_list"
Field Value
Type |
Description |
System.String |
|
EXTRA_CHANGED_PACKAGE_LIST
Declaration
public const string EXTRA_CHANGED_PACKAGE_LIST = "android.intent.extra.changed_package_list"
Field Value
Type |
Description |
System.String |
|
EXTRA_CHANGED_UID_LIST
Declaration
public const string EXTRA_CHANGED_UID_LIST = "android.intent.extra.changed_uid_list"
Field Value
Type |
Description |
System.String |
|
EXTRA_CHOOSER_REFINEMENT_INTENT_SENDER
Declaration
public const string EXTRA_CHOOSER_REFINEMENT_INTENT_SENDER = "android.intent.extra.CHOOSER_REFINEMENT_INTENT_SENDER"
Field Value
Type |
Description |
System.String |
|
EXTRA_CHOOSER_TARGETS
Declaration
public const string EXTRA_CHOOSER_TARGETS = "android.intent.extra.CHOOSER_TARGETS"
Field Value
Type |
Description |
System.String |
|
EXTRA_CHOSEN_COMPONENT
Declaration
public const string EXTRA_CHOSEN_COMPONENT = "android.intent.extra.CHOSEN_COMPONENT"
Field Value
Type |
Description |
System.String |
|
EXTRA_CHOSEN_COMPONENT_INTENT_SENDER
Declaration
public const string EXTRA_CHOSEN_COMPONENT_INTENT_SENDER = "android.intent.extra.CHOSEN_COMPONENT_INTENT_SENDER"
Field Value
Type |
Description |
System.String |
|
EXTRA_COMPONENT_NAME
Declaration
public const string EXTRA_COMPONENT_NAME = "android.intent.extra.COMPONENT_NAME"
Field Value
Type |
Description |
System.String |
|
EXTRA_CONTENT_ANNOTATIONS
Declaration
public const string EXTRA_CONTENT_ANNOTATIONS = "android.intent.extra.CONTENT_ANNOTATIONS"
Field Value
Type |
Description |
System.String |
|
EXTRA_DATA_REMOVED
Declaration
public const string EXTRA_DATA_REMOVED = "android.intent.extra.DATA_REMOVED"
Field Value
Type |
Description |
System.String |
|
EXTRA_DOCK_STATE
Declaration
public const string EXTRA_DOCK_STATE = "android.intent.extra.DOCK_STATE"
Field Value
Type |
Description |
System.String |
|
EXTRA_DOCK_STATE_CAR
Declaration
public const int EXTRA_DOCK_STATE_CAR = 2
Field Value
Type |
Description |
System.Int32 |
|
EXTRA_DOCK_STATE_DESK
Declaration
public const int EXTRA_DOCK_STATE_DESK = 1
Field Value
Type |
Description |
System.Int32 |
|
EXTRA_DOCK_STATE_HE_DESK
Declaration
public const int EXTRA_DOCK_STATE_HE_DESK = 4
Field Value
Type |
Description |
System.Int32 |
|
EXTRA_DOCK_STATE_LE_DESK
Declaration
public const int EXTRA_DOCK_STATE_LE_DESK = 3
Field Value
Type |
Description |
System.Int32 |
|
EXTRA_DOCK_STATE_UNDOCKED
Declaration
public const int EXTRA_DOCK_STATE_UNDOCKED = 0
Field Value
Type |
Description |
System.Int32 |
|
EXTRA_DONT_KILL_APP
Declaration
public const string EXTRA_DONT_KILL_APP = "android.intent.extra.DONT_KILL_APP"
Field Value
Type |
Description |
System.String |
|
EXTRA_EMAIL
Declaration
public const string EXTRA_EMAIL = "android.intent.extra.EMAIL"
Field Value
Type |
Description |
System.String |
|
EXTRA_EXCLUDE_COMPONENTS
Declaration
public const string EXTRA_EXCLUDE_COMPONENTS = "android.intent.extra.EXCLUDE_COMPONENTS"
Field Value
Type |
Description |
System.String |
|
EXTRA_FROM_STORAGE
Declaration
public const string EXTRA_FROM_STORAGE = "android.intent.extra.FROM_STORAGE"
Field Value
Type |
Description |
System.String |
|
EXTRA_HTML_TEXT
Declaration
public const string EXTRA_HTML_TEXT = "android.intent.extra.HTML_TEXT"
Field Value
Type |
Description |
System.String |
|
EXTRA_INDEX
Declaration
public const string EXTRA_INDEX = "android.intent.extra.INDEX"
Field Value
Type |
Description |
System.String |
|
EXTRA_INITIAL_INTENTS
Declaration
public const string EXTRA_INITIAL_INTENTS = "android.intent.extra.INITIAL_INTENTS"
Field Value
Type |
Description |
System.String |
|
EXTRA_INSTALLER_PACKAGE_NAME
Declaration
public const string EXTRA_INSTALLER_PACKAGE_NAME = "android.intent.extra.INSTALLER_PACKAGE_NAME"
Field Value
Type |
Description |
System.String |
|
EXTRA_INTENT
Declaration
public const string EXTRA_INTENT = "android.intent.extra.INTENT"
Field Value
Type |
Description |
System.String |
|
EXTRA_KEY_EVENT
Declaration
public const string EXTRA_KEY_EVENT = "android.intent.extra.KEY_EVENT"
Field Value
Type |
Description |
System.String |
|
EXTRA_LOCAL_ONLY
Declaration
public const string EXTRA_LOCAL_ONLY = "android.intent.extra.LOCAL_ONLY"
Field Value
Type |
Description |
System.String |
|
EXTRA_MIME_TYPES
Declaration
public const string EXTRA_MIME_TYPES = "android.intent.extra.MIME_TYPES"
Field Value
Type |
Description |
System.String |
|
EXTRA_NOT_UNKNOWN_SOURCE
Declaration
public const string EXTRA_NOT_UNKNOWN_SOURCE = "android.intent.extra.NOT_UNKNOWN_SOURCE"
Field Value
Type |
Description |
System.String |
|
EXTRA_ORIGINATING_URI
Declaration
public const string EXTRA_ORIGINATING_URI = "android.intent.extra.ORIGINATING_URI"
Field Value
Type |
Description |
System.String |
|
EXTRA_PACKAGE_NAME
Declaration
public const string EXTRA_PACKAGE_NAME = "android.intent.extra.PACKAGE_NAME"
Field Value
Type |
Description |
System.String |
|
EXTRA_PHONE_NUMBER
Declaration
public const string EXTRA_PHONE_NUMBER = "android.intent.extra.PHONE_NUMBER"
Field Value
Type |
Description |
System.String |
|
EXTRA_PROCESS_TEXT
Declaration
public const string EXTRA_PROCESS_TEXT = "android.intent.extra.PROCESS_TEXT"
Field Value
Type |
Description |
System.String |
|
EXTRA_PROCESS_TEXT_READONLY
Declaration
public const string EXTRA_PROCESS_TEXT_READONLY = "android.intent.extra.PROCESS_TEXT_READONLY"
Field Value
Type |
Description |
System.String |
|
EXTRA_QUICK_VIEW_FEATURES
Declaration
public const string EXTRA_QUICK_VIEW_FEATURES = "android.intent.extra.QUICK_VIEW_FEATURES"
Field Value
Type |
Description |
System.String |
|
EXTRA_QUIET_MODE
Declaration
public const string EXTRA_QUIET_MODE = "android.intent.extra.QUIET_MODE"
Field Value
Type |
Description |
System.String |
|
EXTRA_REFERRER
Declaration
public const string EXTRA_REFERRER = "android.intent.extra.REFERRER"
Field Value
Type |
Description |
System.String |
|
EXTRA_REFERRER_NAME
Declaration
public const string EXTRA_REFERRER_NAME = "android.intent.extra.REFERRER_NAME"
Field Value
Type |
Description |
System.String |
|
EXTRA_REMOTE_INTENT_TOKEN
Declaration
public const string EXTRA_REMOTE_INTENT_TOKEN = "android.intent.extra.remote_intent_token"
Field Value
Type |
Description |
System.String |
|
EXTRA_REPLACEMENT_EXTRAS
Declaration
public const string EXTRA_REPLACEMENT_EXTRAS = "android.intent.extra.REPLACEMENT_EXTRAS"
Field Value
Type |
Description |
System.String |
|
EXTRA_REPLACING
Declaration
public const string EXTRA_REPLACING = "android.intent.extra.REPLACING"
Field Value
Type |
Description |
System.String |
|
EXTRA_RESTRICTIONS_BUNDLE
Declaration
public const string EXTRA_RESTRICTIONS_BUNDLE = "android.intent.extra.restrictions_bundle"
Field Value
Type |
Description |
System.String |
|
EXTRA_RESTRICTIONS_INTENT
Declaration
public const string EXTRA_RESTRICTIONS_INTENT = "android.intent.extra.restrictions_intent"
Field Value
Type |
Description |
System.String |
|
EXTRA_RESTRICTIONS_LIST
Declaration
public const string EXTRA_RESTRICTIONS_LIST = "android.intent.extra.restrictions_list"
Field Value
Type |
Description |
System.String |
|
EXTRA_RESULT_RECEIVER
Declaration
public const string EXTRA_RESULT_RECEIVER = "android.intent.extra.RESULT_RECEIVER"
Field Value
Type |
Description |
System.String |
|
EXTRA_RETURN_RESULT
Declaration
public const string EXTRA_RETURN_RESULT = "android.intent.extra.RETURN_RESULT"
Field Value
Type |
Description |
System.String |
|
EXTRA_SHUTDOWN_USERSPACE_ONLY
Declaration
public const string EXTRA_SHUTDOWN_USERSPACE_ONLY = "android.intent.extra.SHUTDOWN_USERSPACE_ONLY"
Field Value
Type |
Description |
System.String |
|
EXTRA_STREAM
Declaration
public const string EXTRA_STREAM = "android.intent.extra.STREAM"
Field Value
Type |
Description |
System.String |
|
EXTRA_SUBJECT
Declaration
public const string EXTRA_SUBJECT = "android.intent.extra.SUBJECT"
Field Value
Type |
Description |
System.String |
|
EXTRA_TEMPLATE
Declaration
public const string EXTRA_TEMPLATE = "android.intent.extra.TEMPLATE"
Field Value
Type |
Description |
System.String |
|
EXTRA_TEXT
Declaration
public const string EXTRA_TEXT = "android.intent.extra.TEXT"
Field Value
Type |
Description |
System.String |
|
EXTRA_TITLE
Declaration
public const string EXTRA_TITLE = "android.intent.extra.TITLE"
Field Value
Type |
Description |
System.String |
|
EXTRA_UID
Declaration
public const string EXTRA_UID = "android.intent.extra.UID"
Field Value
Type |
Description |
System.String |
|
EXTRA_USER
Declaration
public const string EXTRA_USER = "android.intent.extra.USER"
Field Value
Type |
Description |
System.String |
|
FILL_IN_ACTION
Declaration
public const int FILL_IN_ACTION = 1
Field Value
Type |
Description |
System.Int32 |
|
FILL_IN_CATEGORIES
Declaration
public const int FILL_IN_CATEGORIES = 4
Field Value
Type |
Description |
System.Int32 |
|
FILL_IN_CLIP_DATA
Declaration
public const int FILL_IN_CLIP_DATA = 128
Field Value
Type |
Description |
System.Int32 |
|
FILL_IN_COMPONENT
Declaration
public const int FILL_IN_COMPONENT = 8
Field Value
Type |
Description |
System.Int32 |
|
FILL_IN_DATA
Declaration
public const int FILL_IN_DATA = 2
Field Value
Type |
Description |
System.Int32 |
|
FILL_IN_PACKAGE
Declaration
public const int FILL_IN_PACKAGE = 16
Field Value
Type |
Description |
System.Int32 |
|
FILL_IN_SELECTOR
Declaration
public const int FILL_IN_SELECTOR = 64
Field Value
Type |
Description |
System.Int32 |
|
FILL_IN_SOURCE_BOUNDS
Declaration
public const int FILL_IN_SOURCE_BOUNDS = 32
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_BROUGHT_TO_FRONT
Declaration
public const int FLAG_ACTIVITY_BROUGHT_TO_FRONT = 4194304
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_CLEAR_TASK
Declaration
public const int FLAG_ACTIVITY_CLEAR_TASK = 32768
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_CLEAR_TOP
Declaration
public const int FLAG_ACTIVITY_CLEAR_TOP = 67108864
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
Declaration
public const int FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS = 8388608
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_FORWARD_RESULT
Declaration
public const int FLAG_ACTIVITY_FORWARD_RESULT = 33554432
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_LAUNCH_ADJACENT
Declaration
public const int FLAG_ACTIVITY_LAUNCH_ADJACENT = 4096
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY
Declaration
public const int FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY = 1048576
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_MULTIPLE_TASK
Declaration
public const int FLAG_ACTIVITY_MULTIPLE_TASK = 134217728
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_NEW_DOCUMENT
Declaration
public const int FLAG_ACTIVITY_NEW_DOCUMENT = 524288
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_NEW_TASK
Declaration
public const int FLAG_ACTIVITY_NEW_TASK = 268435456
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_NO_ANIMATION
Declaration
public const int FLAG_ACTIVITY_NO_ANIMATION = 65536
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_NO_HISTORY
Declaration
public const int FLAG_ACTIVITY_NO_HISTORY = 1073741824
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_NO_USER_ACTION
Declaration
public const int FLAG_ACTIVITY_NO_USER_ACTION = 262144
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_PREVIOUS_IS_TOP
Declaration
public const int FLAG_ACTIVITY_PREVIOUS_IS_TOP = 16777216
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_REORDER_TO_FRONT
Declaration
public const int FLAG_ACTIVITY_REORDER_TO_FRONT = 131072
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
Declaration
public const int FLAG_ACTIVITY_RESET_TASK_IF_NEEDED = 2097152
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_RETAIN_IN_RECENTS
Declaration
public const int FLAG_ACTIVITY_RETAIN_IN_RECENTS = 8192
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_SINGLE_TOP
Declaration
public const int FLAG_ACTIVITY_SINGLE_TOP = 536870912
Field Value
Type |
Description |
System.Int32 |
|
FLAG_ACTIVITY_TASK_ON_HOME
Declaration
public const int FLAG_ACTIVITY_TASK_ON_HOME = 16384
Field Value
Type |
Description |
System.Int32 |
|
FLAG_DEBUG_LOG_RESOLUTION
Declaration
public const int FLAG_DEBUG_LOG_RESOLUTION = 8
Field Value
Type |
Description |
System.Int32 |
|
FLAG_EXCLUDE_STOPPED_PACKAGES
Declaration
public const int FLAG_EXCLUDE_STOPPED_PACKAGES = 16
Field Value
Type |
Description |
System.Int32 |
|
FLAG_FROM_BACKGROUND
Declaration
public const int FLAG_FROM_BACKGROUND = 4
Field Value
Type |
Description |
System.Int32 |
|
FLAG_GRANT_PERSISTABLE_URI_PERMISSION
Declaration
public const int FLAG_GRANT_PERSISTABLE_URI_PERMISSION = 64
Field Value
Type |
Description |
System.Int32 |
|
FLAG_GRANT_PREFIX_URI_PERMISSION
Declaration
public const int FLAG_GRANT_PREFIX_URI_PERMISSION = 128
Field Value
Type |
Description |
System.Int32 |
|
FLAG_GRANT_READ_URI_PERMISSION
Declaration
public const int FLAG_GRANT_READ_URI_PERMISSION = 1
Field Value
Type |
Description |
System.Int32 |
|
FLAG_GRANT_WRITE_URI_PERMISSION
Declaration
public const int FLAG_GRANT_WRITE_URI_PERMISSION = 2
Field Value
Type |
Description |
System.Int32 |
|
FLAG_INCLUDE_STOPPED_PACKAGES
Declaration
public const int FLAG_INCLUDE_STOPPED_PACKAGES = 32
Field Value
Type |
Description |
System.Int32 |
|
FLAG_RECEIVER_FOREGROUND
Declaration
public const int FLAG_RECEIVER_FOREGROUND = 268435456
Field Value
Type |
Description |
System.Int32 |
|
FLAG_RECEIVER_NO_ABORT
Declaration
public const int FLAG_RECEIVER_NO_ABORT = 134217728
Field Value
Type |
Description |
System.Int32 |
|
FLAG_RECEIVER_REGISTERED_ONLY
Declaration
public const int FLAG_RECEIVER_REGISTERED_ONLY = 1073741824
Field Value
Type |
Description |
System.Int32 |
|
FLAG_RECEIVER_REPLACE_PENDING
Declaration
public const int FLAG_RECEIVER_REPLACE_PENDING = 536870912
Field Value
Type |
Description |
System.Int32 |
|
FLAG_RECEIVER_VISIBLE_TO_INSTANT_APPS
Declaration
public const int FLAG_RECEIVER_VISIBLE_TO_INSTANT_APPS = 2097152
Field Value
Type |
Description |
System.Int32 |
|
METADATA_DOCK_HOME
Declaration
public const string METADATA_DOCK_HOME = "android.dock_home"
Field Value
Type |
Description |
System.String |
|
URI_ALLOW_UNSAFE
Declaration
public const int URI_ALLOW_UNSAFE = 4
Field Value
Type |
Description |
System.Int32 |
|
URI_ANDROID_APP_SCHEME
Declaration
public const int URI_ANDROID_APP_SCHEME = 2
Field Value
Type |
Description |
System.Int32 |
|
URI_INTENT_SCHEME
Declaration
public const int URI_INTENT_SCHEME = 1
Field Value
Type |
Description |
System.Int32 |
|
Methods
AddCategory(String)
Add a new category to the intent. Categories provide additional detail about the action the intent performs.
When resolving an intent, only activities that provide all of the requested categories will be used.
Declaration
public void AddCategory(string category)
Parameters
Type |
Name |
Description |
System.String |
category |
The desired category.
This can be either one of the predefined Intent categories, or a custom category in your own namespace.
|
AddFlags(Int32)
Add additional flags to the intent (or with existing flags value).
Declaration
public void AddFlags(int flags)
Parameters
Type |
Name |
Description |
System.Int32 |
flags |
Value is either 0 or combination of
FLAG_GRANT_READ_URI_PERMISSION, FLAG_GRANT_WRITE_URI_PERMISSION, FLAG_FROM_BACKGROUND,
FLAG_DEBUG_LOG_RESOLUTION, FLAG_EXCLUDE_STOPPED_PACKAGES, FLAG_INCLUDE_STOPPED_PACKAGES,
FLAG_GRANT_PERSISTABLE_URI_PERMISSION, FLAG_GRANT_PREFIX_URI_PERMISSION, FLAG_ACTIVITY_MATCH_EXTERNAL,
FLAG_RECEIVER_REGISTERED_ONLY, FLAG_RECEIVER_REPLACE_PENDING, FLAG_RECEIVER_FOREGROUND, FLAG_RECEIVER_NO_ABORT,
FLAG_ACTIVITY_CLEAR_TOP, FLAG_ACTIVITY_FORWARD_RESULT, FLAG_ACTIVITY_PREVIOUS_IS_TOP, FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS,
FLAG_ACTIVITY_BROUGHT_TO_FRONT, FLAG_RECEIVER_VISIBLE_TO_INSTANT_APPS, FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY,
FLAG_ACTIVITY_NEW_DOCUMENT, FLAG_ACTIVITY_NO_USER_ACTION, FLAG_ACTIVITY_REORDER_TO_FRONT, FLAG_ACTIVITY_NO_ANIMATION,
FLAG_ACTIVITY_CLEAR_TASK, FLAG_ACTIVITY_TASK_ON_HOME, FLAG_ACTIVITY_RETAIN_IN_RECENTS or FLAG_ACTIVITY_LAUNCH_ADJACENT.
|
CreateChooser(AN_Intent, String, AN_Intent[])
Convenience function for creating a ACTION_CHOOSER Intent.
Builds a new ACTION_CHOOSER Intent that wraps the given target intent,
also optionally supplying a title.
If the target intent has specified FLAG_GRANT_READ_URI_PERMISSION or FLAG_GRANT_WRITE_URI_PERMISSION,
then these flags will also be set in the returned chooser intent
Declaration
public static AN_Intent CreateChooser(AN_Intent intent, string title, params AN_Intent[] extraInitialIntents)
Parameters
Type |
Name |
Description |
AN_Intent |
intent |
The Intent that the user will be selecting an activity to perform.
|
System.String |
title |
Title that will be displayed in the chooser.
|
AN_Intent[] |
extraInitialIntents |
Optional, additional activities to place a the front of the list of choices, when shown to the user with a ACTION_CHOOSER.
|
Returns
PutExtra(String, String)
Add extended data to the intent. The name must include a package prefix,
for example the app com.android.contacts would use names like "com.android.contacts.ShowAll".
Declaration
public void PutExtra(string name, string value)
Parameters
Type |
Name |
Description |
System.String |
name |
The name of the extra data, with package prefix.
|
System.String |
value |
The string data value.
|
PutExtra(String, String[])
Add extended data to the intent. The name must include a package prefix,
for example the app com.android.contacts would use names like "com.android.contacts.ShowAll".
Declaration
public void PutExtra(string name, params string[] values)
Parameters
Type |
Name |
Description |
System.String |
name |
The name of the extra data, with package prefix.
|
System.String[] |
values |
The string data value.
|
PutExtra(String, Texture2D)
Add extended data to the intent. The name must include a package prefix,
for example the app com.android.contacts would use names like "com.android.contacts.ShowAll".
Declaration
public void PutExtra(string name, Texture2D value)
Parameters
Type |
Name |
Description |
System.String |
name |
The name of the extra data, with package prefix.
|
Texture2D |
value |
The Texture2D data value.
|
PutExtra(String, Texture2D[])
Add extended data to the intent. The name must include a package prefix,
for example the app com.android.contacts would use names like "com.android.contacts.ShowAll".
Declaration
public void PutExtra(string name, params Texture2D[] values)
Parameters
Type |
Name |
Description |
System.String |
name |
The name of the extra data, with package prefix.
|
Texture2D[] |
values |
The list of .
|
PutExtra(String, Uri)
Add extended data to the intent. The name must include a package prefix,
for example the app com.android.contacts would use names like "com.android.contacts.ShowAll".
Declaration
public void PutExtra(string name, Uri uri)
Parameters
Type |
Name |
Description |
System.String |
name |
The name of the extra data, with package prefix.
|
Uri |
uri |
The Uri data value.
|
PutExtra(String, Uri[])
Add extended data to the intent. The name must include a package prefix,
for example the app com.android.contacts would use names like "com.android.contacts.ShowAll".
Declaration
public void PutExtra(string name, params Uri[] values)
Parameters
Type |
Name |
Description |
System.String |
name |
The name of the extra data, with package prefix.
|
Uri[] |
values |
The List of .
|
SetAction(String)
Set the general action to be performed.
Declaration
public void SetAction(string action)
Parameters
Type |
Name |
Description |
System.String |
action |
An action name, such as ACTION_VIEW. Application-specific actions should be prefixed with the vendor's package name.
|
SetPackage(String)
(Usually optional) Set an explicit application package name that limits the components this Intent will resolve to.
If left to the default value of null, all components in all applications will considered.
If non-null, the Intent can only match the components in the given application package.
Declaration
public void SetPackage(string packageName)
Parameters
Type |
Name |
Description |
System.String |
packageName |
The name of the application package to handle the intent, or null to allow any application package.
|
SetType(String)
Set an explicit MIME data type.
This is used to create intents that only specify a type and not data,
for example to indicate the type of data to return.
This method automatically clears any data that was previously set
Note: MIME type matching in the Android framework is case-sensitive, unlike formal RFC MIME types.
As a result, you should always write your MIME types with lower case letters,
Declaration
public void SetType(string type)
Parameters
Type |
Name |
Description |
System.String |
type |
MIME data type.
|