Android - 使用默认浏览器并重定向到指定的URL

时间:2011-05-27 08:12:01

标签: android

您好
我想写一个应用程序来调用默认浏览器并重定向到指定的URL。 建议1)调用默认浏览器,2)重定向到指定的URL。

由于

2 个答案:

答案 0 :(得分:7)

您只想以网页的Uri作为数据元素启动ACTION_VIEW意图:

Intent httpIntent = new Intent(Intent.ACTION_VIEW);
httpIntent.setData(Uri.parse("http://www.bbc.co.uk"));

startActivity(httpIntent);        

答案 1 :(得分:1)

要打开默认浏览器,请使用带有操作VIEW的Intent。告诉浏览器哪个页面加载了Intent的数据部分。

示例:

Intent browse = new Intent(Intent.ACTION_VIEW, Uri.parse("http://stackoverflow.com"));
startActivity(browse);

由于这是Android中的基本任务,您可能需要阅读有关Android中Intents的一些基础知识。