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

I want my intent to be launched when the user goes to a certain url: for example, the android market does this with http://market.android.com/ urls. so does youtube. I want mine to do that too.

share|improve this question
5  
There's a great answer to this question at stackoverflow.com/questions/2448213/… – neu242 Jun 24 '10 at 6:11
1  
There is a better answer to this question stackoverflow.com/questions/1609573/… – rds Sep 16 '12 at 15:05

1 Answer

up vote 51 down vote accepted

I did it!

<intent-filter>
  <action android:name="android.intent.action.VIEW"></action>
  <category android:name="android.intent.category.DEFAULT"></category>
  <category android:name="android.intent.category.BROWSABLE"></category>
  <data android:host="www.youtube.com" android:scheme="http"></data>
</intent-filter>

This works perfectly!

share|improve this answer
4  
It doesnt work for me. Can you please give an example-Link that would open the Application. – Pascal Klein Apr 1 '11 at 14:39
1  
I'd like to react to "www.youtube.com" but NOT to "www.youtube.com/fr/"... Any idea how I can do that? – Gilbou Oct 28 '11 at 16:10
This works perfectly, thanks, but i also need to obtain the URL that was clicked to open the app. anyone can explain how to do this? – boogieman May 17 '12 at 12:59
1  
look stackoverflow.com/questions/2958701/… – J-Rou May 31 '12 at 18:42

protected by Michael Myers Mar 10 '11 at 17:20

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.