美文网首页
ADB指令 - 拨打电话与发送短信

ADB指令 - 拨打电话与发送短信

作者: 解忧太后 | 来源:发表于2017-06-10 17:10 被阅读0次

1. 拨打与挂断电话

  adb shell am start -a android.intent.action.CALL tel:xxxxx   //拨打电话
  adb shell service call phone 11   //查询状态,来电时查询为1    
  adb shell service call phone 3    //挂断电话

2.发送短信

  adb shell am start -a android.intent.action.SENDTO -d sms:10086 --es sms_body  hello  //编辑短信
  adb shell input keyevent 22  //焦点去到发送按键
  adb shell input keyevent 66   //回车,就是按下发送键

相关文章

网友评论

      本文标题:ADB指令 - 拨打电话与发送短信

      本文链接:https://www.haomeiwen.com/subject/oyovfxtx.html