我的答案是关于使用命令行打开Web浏览器:
adb shell am start -a android.intent.action.VIEW -d http://www.stackoverflow.com
我想知道是否可以同时在单独的标签页中打开多个页面。
感谢。
答案 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数据。