通過 adb命令傳送廣播

2021-08-03 19:02:38 字數 572 閱讀 2728

我們經常用到模組裝置傳送廣播,此處記錄一下:

首先進入adb 使用命令: adb shell

傳送廣播 例:

am broadcast -a action.com.custom.broadcast.quit  --es package "com.test.broadcast"

am broadcast 後面為key 加引數

具體見:

[-a 

][-d ]

[-t ] 

[-c [-c ] ...] 

[-e|--es

...] 

[--ez ...] 

[-e|--ei ...] 

[-n]

[-f ]

-a  後面為 action

--es 為 extra_key

轉換為**為

intent intent = new intent("action.com.custom.broadcast.quit");

intent.putextra("package","com.test.broadcast");

其它引數都類似了。

通過adb 傳送廣播

adb shell am broadcast options 作用 傳送乙個廣播 舉例 adb shell am broadcast a send by frank test 傳送乙個廣播send by frank test 舉例 adb shell am broadcast a android.i...

通過adb 傳送廣播

adb shell am broadcast options 作用 傳送乙個廣播 舉例 adb shell am broadcast a send by frank test 傳送乙個廣播send by frank test 舉例 adb shell am broadcast a android.i...

使用 adb 命令向 Android 傳送廣播

安裝adb 安裝homebrew ruby e curl fssl 安裝adb brew cask install android platform tools 檢測安裝是否成功 adb devices 進入adb 使用命令 adb shell傳送廣播 am broadcast a action.c...