adb 拨号

http://www.rritw.com/a/bianchengyuyan/C__/20130130/258300.html

http://hi.baidu.com/gbthereisaway/item/b079ce7098aaca49ef1e53ae

http://blog.csdn.net/melody_lu123/article/details/7401744

http://www.eoeandroid.com/thread-44079-1-1.html


通过adb 命令拨打电话 

adb shell service call phone 2 s16 "10086"(呼叫的号码)
其中phone表示服务名,2表示拨打动作,最后是电话号码。


通过adb 命令发送短信,需要两步

adb shell am start -a android.intent.action.SENDTO -d sms:10086(发送目的号码) --es sms_body "hello"(短信内容) --ez exit_on_sent true

adb shell input keyevent 22//焦点去到发送键

adb shell input keyevent 66//回车按下



你可能感兴趣的:(adb 拨号)