python脚本中的复杂adb命令无法正常工作

时间:2016-08-04 22:59:58

标签: android python shell scripting adb

我想在脚本中运行此命令

am broadcast -a com.test_event -e data '{ "eventType" : "atlastest", "name" : “backlight" }'  

我的剧本说

subprocess.Popen('adb shell "am broadcast -a com.test_event -e data \'{ \"eventType\" : \"atlastest\", \"name\" : \"backlight\" }\'"')

然而,当我运行它时,它只需要将此语句的一部分用于单词事件。这就是结果。

Broadcasting: Intent { act=com.preva.mpaqtapp.test_event (has extras) }
Broadcast completed: result=0

如何更改此设置以便运行整个命令?

0 个答案:

没有答案