前端之家收集整理的这篇文章主要介绍了
android – 如何从终端打开URL,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个在
Android终端上运行的脚本,我需要它来打开浏览器和URL.
我设法打开浏览器,但没有找到将URL放在上面的
方法.
am start -a android.intent.action.MAIN -n com.android.browser/.BrowserActivity;
感谢任何帮助:)
只需使用Intent.ACTION_VIEW(即android.intent.action.VIEW),例如:
am start -a android.intent.action.VIEW -d http://www.xing.de
通过这种方式启动XING站点.如果您安装了多个浏览器,您当然可以添加要启动的浏览器的组件名称,例如:
am start -a android.intent.action.VIEW
-n com.android.browser/.BrowserActivity -d http://www.xing.de
干杯!
原文链接:https://www.f2er.com/android/309399.html