如何在android中重定向一个站点

时间:2011-02-07 12:03:18

标签: android http

我想重定向一个网站。如何使用http?pls可以用任何一个解释我吗?我是android的新手

2 个答案:

答案 0 :(得分:0)

“重定向网站”是什么意思?如果它将网站从一个网址重定向到另一个网址,那么它可以在网络服务器上完成 - 不需要Android参与......

答案 1 :(得分:0)

我认为你需要这样的东西......

intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.com"));
startActivity(intent);