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..
Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com"));
startActivity(browserIntent);