adb shell am broadcast
使用am發啟廣播
adb shell am broadcast -a android.provider.Telephony.SECRET_CODE -d android_secret_code://28346
廣播端:
import static other.packages.Intents.SECRET_CODE_ACTION // ="android.provider.Telephony.SECRET_CODE "
Intent intent = new Intent(Intents.SECRET_CODE_ACTION,
Uri.parse("android_secret_code://" + "28346"));
context.sendBroadcast(intent);廣播接收端 方式1:
<receiver android:name="MyReceiver" >
<intent-filter>
<action android:name="android.provider.Telephony.SECRET_CODE" />
<data android:scheme="android_secret_code" android:host="28346" />
</intent-filter>
</receiver>
廣播接收 方式2:public void onReceive (Context context, Intent intent)
{
//.,....
if (intent.getAction().equals(SECRET_CODE_ACTION)) {
String host = intent.getData().getHost();
if (host.equals("767*3855") && !isKeyStringBlocked()) {
// do something
}
}
adb shell am broadcast -a android.provider.Telephony.SECRET_CODE -d android_secret_code://767*3855
相關文章
- 常用adb 和 adb shell 命令
- adb shell 命令整理
- adb shell 埠占用
- adb shell input keyevent
- Android adb shell命令大全Android
- Android adb shell 命令大全Android
- 【整理】adb命令、adb shell與Linux各種命令(busybox)Linux
- android adb shell 常用命令Android
- 使用 adb shell dumpsys gfxinfo 和 adb shell dumpsys SurfaceFlinger --latency 都無法獲取到資料
- sqlite相關--------adb shell操作,工具操作,程式操作SQLite
- 34個Android常用adb shell命令彙總Android
- android開發筆記之ADB Shell CommandsAndroid筆記
- adb shell命令--命令建立模擬器並啟動,命令
- 『與善仁』Appium基礎 — 7、ADB Shell命令的使用APP
- Android Broadcast SecurityAndroidAST
- Broadcast原始碼分析AST原始碼
- SparkCore-Broadcast-7SparkAST
- I Am The Captain of My SoulAPTAI
- 轉multicast vs broadcastAST
- AM的常用T-CODE
- 【資料分享】基於TI Sitara系列AM3352/AM3354/AM3359核心板規格書
- 感覺 adb shell cat /proc/pid/net/dev 統計的流量並不真實dev
- mumu模擬器 adb shell 登入後執行命令 Inappropriate ioctl for deviceAPPdev
- Open Wifi SSID Broadcast vulnerabilityWiFiAST
- Vue $dispatch 和 $broadcast 詳解VueAST
- Python NumPy 廣播(Broadcast)PythonAST
- Android之Broadcast(廣播)AndroidAST
- I am lycc & Blog 目錄
- adb命令
- Android系統在超級終端下必會的命令大全(adb shell命令大全)Android
- 分享一些 Broadcast 使用技巧AST
- 重學 JavaScript API - Broadcast Channel APIJavaScriptAPIAST
- 筆記-AM的正交解調法筆記
- 10.3 - AM - 模擬賽 總結
- adb shell 無響應,無法登入裝置進入命令列模式,辛苦大佬解答命令列模式
- [mac Catalina 系統配置 adb] 配置 adb 環境後,執行 adb 報錯:zsh: bad CPU type in executable: adbMac
- 常用adb 命令
- 常用adb命令