How to open an URL from code in the built-in web browser rather than within my application?

I tried this :

Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(strURL));

startActivity(myIntent);

but I got an Exception : "No activity found to handle Intent{action=android.intent.action.VIEW data =www.google.com"

link|improve this question

41% accept rate
2  
I think it's because of this: android-developers.blogspot.com/2009/12/… – Arutha Feb 4 '10 at 18:23
feedback

2 Answers

up vote 159 down vote accepted

Try this:

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);

That works fine for me.

As for the missing "http://" I'd just do something like this:

if (!url.startsWith("http://") && !url.startsWith("https://"))
   url = "http://" + url;

I would also probably pre-populate your EditText that the user is typing a URL in with "http://".

link|improve this answer
and not for me... – Arutha Feb 4 '10 at 18:24
1  
Except that your code and mbaird's aren't the same, from what I can tell for what's posted. Ensure that your URL has the http:// scheme -- the exception shown suggests that your URL is lacking the scheme. – CommonsWare Feb 4 '10 at 18:31
1  
Yes ! It missed the http:// ! The URL is entered by the user, is there a way to automatically format? – Arutha Feb 4 '10 at 18:44
See the update to my answer above regarding detecting the missing http:// – mbaird Feb 4 '10 at 19:03
1  
URLUtil is a great way to check on user entered "url" Strings – Dan Jun 21 '11 at 19:30
show 4 more comments
feedback

In 2.3, I had better luck with

final Intent intent = new Intent(Intent.ACTION_VIEW).setData(Uri.parse(url));
activity.startActivity(intent);

The difference being the use of Intent.ACTION_VIEW rather than the String "android.intent.action.VIEW"

link|improve this answer
feedback

protected by Community Mar 18 at 11:56

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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