如何从终端打开URL

时间:2013-05-10 17:59:29

标签: android unix

我正在编写一个在Android终端上运行的脚本,我需要它来打开浏览器和URL。 我设法打开浏览器,但没有找到将U​​RL放在上面的方法。

am start -a android.intent.action.MAIN -n com.android.browser/.BrowserActivity;

感谢任何帮助:)

1 个答案:

答案 0 :(得分:10)

只需使用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

干杯!