The details are as follows:
intent.action_airplane_mode_changed;
Broadcast when flight mode is closed or turned on
intent.action_battery_changed;
Charge status, or the battery's electricity changes
Battery charging status, charge level change, can not receive this broadcast through the formation Declaration, only through the Context.registerreceiver () registration
Intent.action_battery_low;
Indicates a low battery charge
Intent.action_battery_okay;
Indicates a sufficient battery that emits a broadcast when the battery changes from low to full
intent.action_boot_completed;
This action is broadcast once (only once) after the system has been booted.
Intent.action_camera_button;
Broadcast when the camera button (hardware key) is pressed
Intent.action_close_system_dialogs;
When the screen times out to lock the screen, when the user presses the power button, long press or short press (regardless of the pop-up box), the Android system will broadcast this action message
intent.action_configuration_changed;
The broadcast (including changes: interface language, device orientation, etc.) when the device is currently set to be changed, please refer to Configuration.java
intent.action_date_changed;
This broadcast is emitted when the device date has changed
Intent.action_device_storage_low;
Broadcast when the device is out of memory, this broadcast can only be used by the system, other apps are not available?
INTENT.ACTION_DEVICE_STORAGE_OK;
A broadcast that is emitted when the device is out of memory, which can only be used by the system, and other apps are not available?
Intent.action_dock_event;
//
The place where this broadcast was issued Frameworks\base\services\java\com\android\server\dockobserver.java
intent.action_external_applications_available;
After the mobile app is finished, the broadcast (move is: APP2SD)
intent.action_external_applications_unavailable;
When the app is being moved, the broadcast (move is: APP2SD)
intent.action_gtalk_service_connected;
Gtalk broadcast when a connection is made
intent.action_gtalk_service_disconnected;
Gtalk a broadcast when the connection is disconnected
Intent.action_headset_plug;
Radio broadcast when inserting headphones on the headphone port
intent.action_input_method_changed;
Broadcast when you change the input method
intent.action_locale_changed;
Broadcasts issued when the device's current locale has changed
Intent.action_manage_package_storage;
//
Intent.action_media_bad_removal;
The SD card has not been removed correctly (the way to properly remove the SD card: Set the--SD card and device memory-Uninstall the SD card), but the radio issued when the SD card was removed
Broadcast: Extended media (expansion card) has been unplugged from the SD card slot, but mount point has not been lifted (unmount)
Intent.action_media_button;
Broadcast when press button is pressed, if there is a Media button key (Hardware key)
intent.action_media_checking;
When inserting an external storage device, such as an SD card, the system verifies the SD card, and the broadcast is issued at this time.
Intent.action_media_eject;
Unplugged a broadcast from an external mass storage device (such as an SD card, or a removable hard drive), whether or not the correct uninstall will emit this broadcast?
Broadcast: The user wants to remove the extended media (unplug the expansion card).
intent.action_media_mounted;
Broadcast when the SD card is inserted and correctly installed (identified)
Broadcast: The extended media is inserted and has been mounted.
Intent.action_media_nofs;
//
intent.action_media_removed;
The external storage device has been removed and will emit this broadcast, whether or not it is properly uninstalled?
Broadcast: Extended media is removed.
intent.action_media_scanner_finished;
Broadcast: A directory that has been scanned for media
Intent.action_media_scanner_scan_file;
//
intent.action_media_scanner_started;
Broadcast: A directory to begin scanning media
intent.action_media_shared;
Broadcast: The Mount of the extended media is lifted (unmount) because it has been shared as a USB bulk storage.
intent.action_media_unmountable;
//
intent.action_media_unmounted
Broadcast: Extended media exists, but has not been mounted (mount).
Intent.action_new_outgoing_call;
//
intent.action_package_added;
After the successful installation of APK
Broadcast: A new application package is installed on the device.
A new application package is already installed on the device and the data includes the package name (the latest installed package program cannot receive this broadcast)
intent.action_package_changed;
An existing application package has been changed, including the package name
intent.action_package_data_cleared;
Broadcast when data is cleared for an application (in Settings-Application management-Select an application and then point to purge data?)
The user has cleared a packet of data, including the package name (the Purge package cannot receive this broadcast)
Intent.action_package_install;
Trigger a broadcast that downloads and completes the installation, such as downloading apps in the electronics market?
//
intent.action_package_removed;
A broadcast that was sent after a successful deletion of a apk
An existing application package has been removed from the device, including the package name (the package program being installed cannot receive this broadcast)
intent.action_package_replaced;
Broadcast when replacing an existing installation package (whether the app now installed is newer or older than the previous one), will this broadcast be issued? )
intent.action_package_restarted;
The user restarts a package, all the process of the package is killed, and all the running time status associated with it should be removed, including the package name (the restart package cannot receive this broadcast)
intent.action_power_connected;
Broadcast when plugged into external power
intent.action_power_disconnected;
Broadcast when disconnected from external power connection
intent.action_provider_changed;
//
Intent.action_reboot;
Broadcasting when rebooting a device
Intent.action_screen_off;
Broadcast after the screen is closed
intent.action_screen_on;
Broadcast after the screen is opened
Intent.action_shutdown;
Broadcast when the system is shut down
intent.action_timezone_changed;
Broadcast when a time zone has changed
intent.action_time_changed;
Broadcast when the time is set
Intent.action_time_tick;
Broadcast: The current time has changed (normal time elapsed).
Current time changes, sent every minute, cannot be received through component declarations, only through the Context.registerreceiver () method to register
intent.action_uid_removed;
A user ID has been removed from the system to emit a broadcast
//
intent.action_ums_connected;
Broadcast when the device has entered a USB bulk storage state?
intent.action_ums_disconnected;
Broadcast when the device has been converted from a USB bulk storage state to a normal state?
Intent.action_user_present;
//
intent.action_wallpaper_changed;
Broadcast when device wallpaper has changed
The above content is small series to introduce the Android broadcast Encyclopedia Intent Action event Detailed, I hope you like.