标签: android
我想创建一个Android应用程序,就像我们点击Button时它应该重新链接到URL,例如:www.goldpricesindia.com并在屏幕上显示详细信息。 任何人都可以建议如何为此启动代码?
谢谢..
答案 0 :(得分:1)
Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com")); startActivity(browserIntent);