adb shell 发送广播
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了adb shell 发送广播相关的知识,希望对你有一定的参考价值。
参考技术A 举个例子: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 am broadcast发送带参数广播
感谢:在命令行中通过adb shell am broadcast发送广播通知
adb shell am broadcast -a ccui.intent.action.DEBUG_IOT --es cmd "pullAutoList"
以上是关于adb shell 发送广播的主要内容,如果未能解决你的问题,请参考以下文章