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

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指令 - 拨打电话与发送短信)