-4

I want to create an android app which is like when we click on Button it should redriect to URL's eg: www.goldpricesindia.com and display details on the screen. can anyone suggest how to start a code for this?

Thanks..

Gani
  • 3
  • 3
  • 6

1 Answers1

1
    Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com"));
    startActivity(browserIntent);
Naveen Tamrakar
  • 3,349
  • 1
  • 19
  • 28