单击Android应用程序中的按钮并重定向到URL

时间:2015-03-16 04:57:51

标签: android

我想创建一个Android应用程序,就像我们点击Button时它应该重新链接到URL,例如:www.goldpricesindia.com并在屏幕上显示详细信息。 任何人都可以建议如何为此启动代码?

谢谢..

1 个答案:

答案 0 :(得分:1)

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