101

如何使用该adb shell命令启动浏览器并使其打开某个网页?

4

6 回答 6

244

运行此命令将在 android 中启动 Web 浏览器:

adb shell am start -a android.intent.action.VIEW -d http://www.stackoverflow.com
于 2010-08-18T13:43:45.413 回答
57

如果你的 url 符号很重,你也应该积极地引用

adb shell am start -a android.intent.action.VIEW -d 'http://stackoverflow.com/?uid=isme\&debug=true'
于 2013-06-26T17:55:49.560 回答
5

如果你想专门启动 Chrome

adb shell am start \
-n com.android.chrome/com.google.android.apps.chrome.Main \
-a android.intent.action.VIEW -d 'file:///sdcard/lazer.html'

还可以通过以下方式让 Chrome 访问 sdcard

adb shell pm grant com.android.chrome android.permission.READ_EXTERNAL_STORAGE

如果您使用的是 Chrome 金丝雀版本,请将 com.android.chrome 与 com.chrome.canary 交换。

于 2018-02-21T10:17:20.230 回答
3

我想通过 adb 在我的 kindle 上启动 Silk,而不添加新的 url。我想出了这个:

adb shell am start -n com.amazon.cloud9/.browsing.BrowserActivity
于 2015-11-14T15:16:51.023 回答
0

--user 0在启动后添加并在 jackpal 模拟器中工作,如下所示:

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

于 2022-01-23T18:33:17.627 回答
0

您也可以使用 keyevents 打开默认的 Web 浏览器(可以编写 KEYCODE_EXPLORER 而不是 64)

adb shell input keyevent 64

输入网址提交:(66 -> KEYCODE_ENTER)

adb shell input text "stackoverflow.com" && adb shell input keyevent 66
于 2018-02-14T13:17:34.957 回答