通过 adb命令发送广播

我们经常用到模块设备发送广播,此处记录一下:

首先进入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");


其它参数都类似了。

转载于:https://www.cnblogs.com/sharecenter/p/5621011.html

你可能感兴趣的:(通过 adb命令发送广播)