Android common system Broadcast Encyclopedia

Source: Internet
Author: User

001 intent.action_airplane_mode_changed;  

002//Broadcast When airplane mode is turned off or on

003

004 intent.action_battery_changed;  

005//charging status, or battery power change

006//battery charge status, charge level change, cannot receive this broadcast through the formation statement, only through Context.registerreceiver () registration

007

008 Intent.action_battery_low;  

009//indicates low battery power

010

011 Intent.action_battery_okay;  

012//Indicates that the battery is fully charged, that is, the broadcast will be issued when the battery level changes from low to full

013

014 intent.action_boot_completed;  

015//After the system boot is complete, this action is broadcast once (only once).  

016

017 Intent.action_camera_button;  

018//Press the Radio when the camera button (hardware key) is pressed

019

020 intent.action_close_system_dialogs;  

021//when the screen times out for the lock screen, the Android system broadcasts this action message when the user presses the power button, long press or short press (whether or not to jump out of the box) for the Lock screen

022

023 intent.action_configuration_changed;  

024//The broadcast (including changes: interface language, device orientation, etc.) issued when the device's current settings are changed, please refer to Configuration.java

025

026 intent.action_date_changed;  

027//When the device date changes, this broadcast will be issued

028

029 Intent.action_device_storage_low;  

030//When the device is out of memory, the broadcast can only be used by the system and other apps are not available?  

031

032 Intent.action_device_storage_ok;  

033//device memory from insufficient to sufficient when the broadcast, this broadcast can only be used by the system, other apps are not available?  

034

035 intent.action_dock_event;  

036//

037//Where this broadcast is issued Frameworks\base\services\java\com\android\server\dockobserver.java

038

039 intent.action_external_applications_available;  

040 after the////mobile app is complete, the broadcast (mobile means: APP2SD)

041

042 intent.action_external_applications_unavailable;  

043//When the app is being moved, the broadcast (mobile means: APP2SD )

044

045 intent.action_gtalk_service_connected;  

046//gtalk A broadcast that was made when a connection was established

047

048 intent.action_gtalk_service_disconnected;  

049//gtalk A broadcast that was sent when the connection was disconnected

050

051 Intent.action_headset_plug;  

052//broadcast when the headset is plugged into the headphone port

053

054 intent.action_input_method_changed;  

055//Changing the input method when the broadcast is issued

056

057 intent.action_locale_changed;  

058//Radio emitted when the current locale of the device has changed

059

060 Intent.action_manage_package_storage;  

061//

062

063 Intent.action_media_bad_removal;  

064//Incorrect removal of SD card (correct removal of SD card: Set--SD card and device memory--Uninstall SD card), but broadcast when the SD card is removed

065//Broadcast: Extended Media (expansion card) has been unplugged from SD card slot, but mount point has not been lifted (unmount)

066

067 Intent.action_media_button;  

068//Press the "Media button" button when the broadcast, if there is a "media button" button (Hardware button)

069

070 intent.action_media_checking;  

071//when inserting an external storage device, such as an SD card, the system will verify the SD card, and the broadcast is issued at this time.  

072 Intent.action_media_eject;  

073//Unplugged a broadcast from an external mass storage device (such as an SD card, or a removable hard drive), this broadcast will be issued, whether or not the uninstallation is correct?  

074//broadcast: The user wants to remove the extended media (unplug the expansion card).  

075 intent.action_media_mounted;  

076// broadcast issued when SD card is inserted and properly installed (recognized)

077//Broadcast: The extended media is plugged in and is already mounted.  

078 Intent.action_media_nofs;  

079//

080 intent.action_media_removed;  

081//External storage device has been removed, whether or not properly uninstalled, will issue this broadcast?  

082//Broadcast: The extended media is removed.  

083 intent.action_media_scanner_finished;  

084//broadcast: A directory that has been scanned for media

085 Intent.action_media_scanner_scan_file;  

086//

087 intent.action_media_scanner_started;  

088//Broadcast: Start scanning a directory of media

089

090 intent.action_media_shared;  

091//broadcast: The Mount of the extended media is lifted (unmount) because it has been shared as a USB mass storage.  

092 intent.action_media_unmountable;  

093//

094 intent.action_media_unmounted

095//Broadcast: The extended media exists but is not mounted (mount).  

096 Intent.action_new_outgoing_call;  

097

098 intent.action_package_added;  

099//Successful install apk after

100//Broadcast: A new application package is installed on the device.  

101//A new app package is already installed on the device, the data includes the package name (the latest installed package program cannot receive this broadcast)

102 intent.action_package_changed;  

103//An existing application package has changed, including the package name

104 intent.action_package_data_cleared;  

105//Clear the broadcast of an application's data (in Settings--app management--Select an app, then point to clear data?)  

106//user has cleared the data of a package, including the package name (The Purge package program cannot receive this broadcast)

107

108 Intent.action_package_install;  

109//trigger a download and complete the broadcast of the installation, such as downloading the app in the electronics market?  

//

111 intent.action_package_removed;  

112//Successful deletion of an APK after the broadcast issued

113//An existing application package has been removed from the device, including the package name (the package program being installed cannot receive this broadcast)

the

intent.action_package_replaced;  

116//Replace a broadcast that is issued when an existing installation package (whether the app is now installed than the new or old one, will issue this broadcast?). )

117 intent.action_package_restarted;  

118//user restarts a package, all processes of the package will be killed, all runtime status associated with it should be removed, including the package name (restart package program cannot receive this broadcast)

119 intent.action_power_connected;  

120//broadcast when external power is plugged in

121 intent.action_power_disconnected;  

122//broadcast sent when external power is disconnected

123 intent.action_provider_changed;  

124//

the

126 intent.action_reboot;  

127//Broadcast when restarting the device

-

129 Intent.action_screen_off;  

130//broadcast after the screen is closed

131

intent.action_screen_on;  

133//Broadcast after the screen is opened

134

135 Intent.action_shutdown;  

136//broadcasts issued when the system is shut down

137

138 intent.action_timezone_changed;  

139//Broadcast when time zone changes

$

141 intent.action_time_changed;  

142//time is set when the broadcast is issued

143

144 Intent.action_time_tick;  

145//Broadcast: The current time has changed (normal time elapsed).  

146//Current time change, sent every minute, cannot be received through component declaration, only registered by Context.registerreceiver () method

147

148 intent.action_uid_removed;  

149//A user ID has been removed from the system for the broadcast sent

/ /

151

intent.action_ums_connected;  

153//When the device has entered the USB mass storage state when the broadcast is issued?  

154

155 intent.action_ums_disconnected;  

156//The broadcast when the device has moved from a USB mass storage state to a normal state?  

157

158 intent.action_user_present;  

159//

the

161 intent.action_wallpaper_changed;  

162//The broadcast when the device wallpaper has changed

Android common system Broadcast Encyclopedia

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.