我一直在搜索最近2天的堡壘,但遺憾的是我沒有得到任何滿意的答案。 我的問題是,每當在Android設備中點擊Youtube網址時,它應該列出我的應用程序爲使用完成操作我已經嘗試了很多,但沒有得到它。 這是我試過的代碼。如何抓取YouTube網址並在我的應用中播放?
<intent-filter>
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http://www.youtube.com/watch?v=" />
</intent-filter>
http://developer.android.com/guide/topics/manifest/data-element.html#scheme – EvZ
我已經檢查了所有的事情,但沒有什麼工作給我。 –
你有沒有檢查過這個http://stackoverflow.com/questions/1609573/intercepting-links-from-the-browser-to-open-my-android-app? – EvZ