adb shell 发送广播

举个例子:

adb shell am broadcast -a com.android.test --es test_string "this is test string" --ei test_int 100 --ez test_boolean true

说明:-a 后面指的是广播的Action    --es、 --ei  、--ez是广播的参数,没有参数可以不加此项。

--es表示String类型参数

--ei表示int类型参数

--ez表示boolean类型参数

你可能感兴趣的:(adb shell 发送广播)