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?

link|improve this question

feedback

6 Answers

up vote 112 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.

link|improve this answer
1  
thanks a lot, it's exactly what I was looking for – poeschlorn Jun 10 '10 at 8:47
feedback

The short version

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

should work as well...

link|improve this answer
feedback

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);
link|improve this answer
feedback

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

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

The URL always must 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);
link|improve this answer
feedback

"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.

link|improve this answer
feedback

shortest version :P

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

Your Answer

 
or
required, but never shown

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