Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm just wondering how to fire up an Intent to the phone's browser to Open an specific URL and display it.

Can someone please give a hint?

Is there also a way to pass coords directly to google maps to display?

share|improve this question

6 Answers

up vote 313 down vote accepted

To open a URL/website you do the following:

String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

Here's the documentation of Intent.ACTION_VIEW.

share|improve this answer
2  
thanks a lot, it's exactly what I was looking for – poeschlorn Jun 10 '10 at 8:47
1  
In production level code, you may like to check if the url begins with http or https... Would be better to check if (!url.startsWith("http://") && !url.startsWith("https://")) url = "http://" + url; – Mahendra Sep 25 '12 at 5:33
Simple and effective! Thanks! – nrod Feb 25 at 17:01

The short version

Intent i = new Intent(Intent.ACTION_VIEW, 
       Uri.parse("http://almondmendoza.com/android-applications/"));
startActivity(i);

should work as well...

share|improve this answer

shortest version :P

startActivity(new Intent(Intent.ACTION_VIEW, 
    Uri.parse("http://www.google.com")));
share|improve this answer

Is there also a way to pass coords directly to google maps to display?

You can use the geo URI prefix:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("geo:" + latitude + "," + longitude));
startActivity(intent);
share|improve this answer

In some cases URL may start with "www". In this case you will get an exception:

android.content.ActivityNotFoundException: No Activity found to handle Intent

The URL must always start with "http://" or "https://" so I use this snipped of code:

if (!url.startsWith("https://") && !url.startsWith("http://")){
    url = "http://" + url;
}
Intent openUrlIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(openUrlIntent);
share|improve this answer

"Is there also a way to pass coords directly to google maps to display?"

I have found that if I pass a URL containing the coords to the browser, Android asks if I want the browser or the Maps app, as long as the user hasn't chosen the browser as the default. See my answer here for more info on the formating of the URL.

I guess if you used an intent to launch the Maps App with the coords, that would work also.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.