Wednesday, 20 February 2013

Android - Call default browser with and redirect to a designated url

Intent httpIntent = new Intent(Intent.ACTION_VIEW);
httpIntent.setData(Uri.parse("http://www.bbc.co.uk"));

startActivity(httpIntent);    

No comments:

Post a Comment