如何使用adb打开多个Web浏览器选项卡?

时间:2013-09-27 12:53:08

标签: android browser adb

我的答案是关于使用命令行打开Web浏览器:

adb shell am start -a android.intent.action.VIEW -d http://www.stackoverflow.com

我想知道是否可以同时在单独的标签页中打开多个页面。

感谢。

1 个答案:

答案 0 :(得分:2)

<强>更新

是的,实际上,这是可能的:使用--ez create_new_tab true额外价值。所以,你的命令看起来像:

adb shell am start -a android.intent.action.VIEW -d http://www.stackoverflow.com --ez create_new_tab true

您可以创建一个shell脚本并将所有要打开的网页放在那里,然后运行。

不,那是不可能的。

您使用的adb shell命令与Intent(String action, Uri uri)构造函数相同。参数uri是单个变量,不是数组。因此,您无法提供多个URI数据。