在命令行中通过adb shell am broadcast发送广播

参数及对应类型:

[-a ]
[-d ]
[-t
[-c [-c ] ...] 
[-e|--es ...] 
[--ez ...] 
[-e|--ei ...] 
[-n ]
[-f ] []

--esn     null value (only key name)

-e|--es     string value

--ez     boolean value

--ei     integer value

--el     long value

--ef     float value

--eu     URI

--ecn     component name

--eia [,

--ela [,

 

例如:

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

说明:黄色为action,蓝色为key,红色为value,分别为String类型,int类型,boolean类型,long类型

你可能感兴趣的:(拓展)