我的自动测试通过adb
shell发送意图,但是我无法指定一个额外的字符串数组.
根据Intent class docs,有可能把一个String []额外的意图.
但是,对于am命令,Intent specification docs不会列出字符串数组类型.我可以在docs中看到的唯一的字符串类型是正常的字符串,也可能是null“string”:
--esn <EXTRA_KEY> Add a null extra. This option is not supported for URI intents. -e|--es <EXTRA_KEY> <EXTRA_STRING_VALUE> Add string data as a key-value pair.
为了发送字符串数组的目的,编写一个java应用程序是可以避免的吗?
有没有办法从命令行发送额外的String []
编辑如果这不可能这样做,这是什么首选的方法?
解决方法
老问题,但没有回答.
adb shell am显示所有选项,其中有:
adb shell am显示所有选项,其中有:
[--esa <EXTRA_KEY> <EXTRA_STRING_VALUE>[,<EXTRA_STRING_VALUE...]] (to embed a comma into a string escape it using "\,")