`

Android: Actions for BroadcastReceiver

阅读更多

android.bluetooth.intent.action.BONDING_CREATED
android.bluetooth.intent.action.BONDING_REMOVED
android.bluetooth.intent.action.DISABLED
android.bluetooth.intent.action.DISCOVERY_COMPLETED
android.bluetooth.intent.action.DISCOVERY_STARTED
android.bluetooth.intent.action.ENABLED
android.bluetooth.intent.action.HEADSET_STATE_CHANGED
android.bluetooth.intent.action.MODE_CHANGED
android.bluetooth.intent.action.NAME_CHANGED
android.bluetooth.intent.action.PAIRING_CANCEL
android.bluetooth.intent.action.PAIRING_REQUEST
android.bluetooth.intent.action.REMOTE_ALIAS_CHANGED
android.bluetooth.intent.action.REMOTE_ALIAS_CLEARED
android.bluetooth.intent.action.REMOTE_DEVICE_CONNECTED
android.bluetooth.intent.action.REMOTE_DEVICE_DISAPPEARED
android.bluetooth.intent.action.REMOTE_DEVICE_DISAPPEARED
android.bluetooth.intent.action.REMOTE_DEVICE_DISCONNECTED
android.bluetooth.intent.action.REMOTE_DEVICE_DISCONNECT_REQUESTED
android.bluetooth.intent.action.REMOTE_DEVICE_FOUND
android.bluetooth.intent.action.REMOTE_NAME_FAILED
android.bluetooth.intent.action.REMOTE_NAME_UPDATED
android.intent.action.AIRPLANE_MODE
android.intent.action.BATTERY_CHANGED
android.intent.action.BATTERY_LOW
android.intent.action.BOOT_COMPLETED
android.intent.action.CAMERA_BUTTON
android.intent.action.CONFIGURATION_CHANGED
android.intent.action.DATA_SMS_RECEIVED
android.intent.action.DATE_CHANGED
android.intent.action.DEVICE_STORAGE_LOW
android.intent.action.DEVICE_STORAGE_OK
android.intent.action.GTALK_CONNECTED
android.intent.action.GTALK_DISCONNECTED
android.intent.action.HEADSET_PLUG
android.intent.action.MANAGE_PACKAGE_STORAGE
android.intent.action.MEDIA_BAD_REMOVAL
android.intent.action.MEDIA_BUTTON
android.intent.action.MEDIA_EJECT
android.intent.action.MEDIA_MOUNTED
android.intent.action.MEDIA_REMOVED
android.intent.action.MEDIA_SCANNER_FINISHED
android.intent.action.MEDIA_SCANNER_SCAN_FILE
android.intent.action.MEDIA_SCANNER_STARTED
android.intent.action.MEDIA_SHARED
android.intent.action.MEDIA_UNMOUNTABLE
android.intent.action.MEDIA_UNMOUNTED
android.intent.action.NEW_OUTGOING_CALL
android.intent.action.PACKAGE_ADDED
android.intent.action.PACKAGE_CHANGED
android.intent.action.PACKAGE_INSTALL
android.intent.action.PACKAGE_REMOVED
android.intent.action.PACKAGE_RESTARTED
android.intent.action.POWER_CONNECTED
android.intent.action.POWER_DISCONNECTED
android.intent.action.PROVIDER_CHANGED
android.intent.action.REBOOT
android.intent.action.SCREEN_OFF
android.intent.action.SCREEN_ON
android.intent.action.TIMEZONE_CHANGED
android.intent.action.TIME_SET
android.intent.action.TIME_TICK
android.intent.action.UID_REMOVED
android.intent.action.UMS_CONNECTED
android.intent.action.UMS_DISCONNECTED
android.intent.action.WALLPAPER_CHANGED
android.media.RINGER_MODE_CHANGED
android.media.VIBRATE_SETTING_CHANGED
android.net.wifi.NETWORK_IDS_CHANGED
android.net.wifi.RSSI_CHANGED
android.net.wifi.SCAN_RESULTS
android.net.wifi.STATE_CHANGE
android.net.wifi.WIFI_STATE_CHANGED
android.net.wifi.supplicant.CONNECTION_CHANGE
android.net.wifi.supplicant.STATE_CHANGE
android.provider.Telephony.SIM_FULL
android.provider.Telephony.SMS_RECEIVED
android.provider.Telephony.WAP_PUSH_RECEIVED

文章出处:DIY部落(http://www.diybl.com/course/3_program/java/javajs/20090313/161059.html)

分享到:
评论

相关推荐

    ArcGIS for Android 100.4.0示例完整源码_AS3.3.2

    - App Actions:预测用户可能想要执行的操作,提高用户体验。 - Adaptive Icons:自适应图标,可以根据设备主题和风格动态调整。 - Digital Wellbeing:帮助用户监控和管理使用手机的时间。 - 屏幕亮度自动调节:...

    Android代码-actions

    Actions Library for user actions in the browser. Allows you to create ...Creating a sequence of actions: Actions actions = new Actions(); actions.loadPage("http://www.yandex.ru"). typeText("//input[@

    Android利用广播BroadCast监听网络的变化

    5. **IntentFilter与Actions**: 在注册BroadcastReceiver时,我们需要定义一个IntentFilter,指定我们要监听的事件。对于网络状态变化,常用的Action有`android.net.conn.CONNECTIVITY_CHANGE`,它会在网络连接状态...

    scratch-for-discord-android:Scratch For Discord的Android应用

    4. **权限管理**:Android应用需要处理各种权限,如麦克风和摄像头访问权限,以支持语音和视频通话功能。 5. **用户界面**:JavaScript库如React Native提供丰富的UI组件,可以创建美观且响应式的用户界面,与...

    action-android:与Android相关的GitHub Action的集合

    动作Android 这是用于Android开发的GitHub Actions的集合要求仅在macOS-10.15环境下进行了测试。 它可能在linux上工作,但那里不支持kvm,所以不要期望那里有api 26+。Android SDK 此存储库提供了在构建代理上安装...

    android 学习心得

    - **ADB**:Android Debug Bridge,是一个命令行工具,用于与设备进行通信,可以用于安装、调试应用等。 - **使用断点**:在代码中设置断点,使用IDE的调试功能单步执行代码,查看变量值的变化。 - **性能分析工具**...

    android 底部导航栏

    <menu xmlns:android="http://schemas.android.com/apk/res/android"> android:id="@+id/action_home" android:icon="@drawable/ic_home" android:title="@string/home" /> android:id="@+id/action_search...

    Android应用源码之广播事件处理.zip

    3. 定义IntentFilter:IntentFilter用于指定BroadcastReceiver要监听的广播事件,通过添加不同的actions、categories、data等属性来过滤广播。 4. 发送Broadcast:在需要的地方,通过Context的sendBroadcast()、...

    setup-node:使用特定版本的node.js设置GitHub Actions工作流程

    steps :- uses : actions/checkout@v2- uses : actions/setup-node@v2 with : node-version : ' 14 ' 该操作将首先检查本地缓存中是否有semver匹配项。 托管映像已使用v8,v10,v12和v14中每个LTS的最新版本进行了...

    github-actions-golang:GitHub Actions作为Go的CI

    Go的GitHub操作免费提供... ${{ matrix.os }} steps : - name : Install Go uses : actions/setup-go@v2 with : go-version : ${{ matrix.go-version }} - name : Checkout code uses : actions/checkout@v2 - name :

    Playmaker Actions for DOTween by Doozy 1.5(u2017.4.17).unitypackage

    Playmaker Actions for DOTween by Doozy使用速度最快,效率最高,完全类型安全的面向对象动画引擎,要求Unity 5.3.0或更高版本。 在通过Doozy包导入DOTween Playmaker操作之前,需要在项目中导入和设置Playmaker和...

    setup-scheme:Github Actions CI Scheme的CD设置

    设置方案 方案的Github Actions CI / CD设置用法参见 : on: pushjobs: jobsName: runs-on: macos-latest steps: - uses: actions/checkout@master - uses: guenchi/setup-scheme@master with: implementation: chez...

    vscode-github-triage-actions:Github Actions帮助VS Code处理我们的问题

    其中许多不是特定于VS Code的,可以通过导入存储库在其他项目中使用,如下所示: steps : - name : Checkout Actions uses : actions/checkout@v2 with : repository : ' JacksonKearl/vscode-triage-github-actions...

    Android开发之BroadcastReceiver用法实例分析

    Android系统还预定义了一些标准的Broadcast Actions,如: 1. ACTION_TIME_CHANGED:系统时间更改时触发。 2. ACTION_BOOT_COMPLETED:系统启动完成后触发,常用于开机自启动应用。 3. ACTION_PACKAGE_ADDED:安装新...

    HarmonyOS推送-HMOS-SDK-Setup:GitHubActions的HarmonyOSSDK设置

    HarmonyOS 推送HMOS-SDK-设置 GitHub Actions 的 HarmonyOS SDK 设置 创建 Github 操作工作流。...Actions ...actions/checkout@v2 ...for gradlew run: chmod +x gradlew - name: set environment variables uses:

    buildozer-action:GitHub Action使用Buildozer构建您的Python应用程序

    建造者行动 使用构建适用于Android的Python / 应用程序。... name : Build for Android runs-on : ubuntu-latest steps : - name : Checkout uses : actions/checkout@v2 - name : Build with Buildoz

    playwright-github-action:在GitHub Actions上运行Playwright测试

    Playwright GitHub动作 设置GitHub Actions以使用在Chromium,W​​ebKit和Firefox上运行跨浏览器测试。用法在运行测试之前,将uses: microsoft/playwright-github-action@v1到GitHub工作流定义中。 on : push : ...

    android学习教程--广播机制

    2. Android内置的BroadcastActions: Android系统定义了一系列内置的BroadcastActions,比如“android.intent.action.BOOT_COMPLETED”用于系统启动完成后,或者“android.intent.action.SCREEN_ON/OFF”用于屏幕...

    setup-android:[已弃用]基于Docker的GitHub Actions映像,该映像允许使用Android SDK构建应用程序

    [已弃用] GitHub Actions的Android构建容器 推荐使用:由于这个动作的开始,GitHub的操作已经成长突飞猛进,现在可以构建Android应用程序没有这个图像。 因此,我选择弃用setup-android,并将PR提交给正在使用它的...

Global site tag (gtag.js) - Google Analytics