adb shell 发送广播
发布网友
发布时间:2023-04-12 07:01
我来回答
共1个回答
热心网友
时间:2023-05-08 01:49
举个例子:
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类型参数