1

我正在使用 adb 发送短信。以下命令 ./adb shell am start -a android.intent.action.SENDTO -d sms:12345 --es sms_body "the body" --ez exit_on_sent true ,虽然在 bash 中输入和执行,但它的工作,但我的 python 脚本似乎./adb只调用:

    ADB = './adb'
    def callSMScmd(msg, num):
        adbArgs = ('shell am start -a '
                +'android.intent.action.SENDTO -d sms:'+str(num)+' --es'
                +'sms_body "'+msg+'" --ez exit_on_sent true')
        call([ADB, adbArgs])

正确的返回值是Starting: Intent { act=android.intent.action.SENDTO dat=sms:12345 (has extras) }不幸的是,这个脚本列出了 adb 版本和所有可用的选项;没有警告,没有错误。提前感谢您的帮助

4

1 回答 1

2

shell一个单独的参数:

call(['adb', 'shell', 'am start -a android.intent.action.SENDTO ...'])
于 2013-07-30T15:39:53.340 回答