过去2天我一直在寻找这个,但很遗憾地说我没有得到任何满意的答案。 我的问题是,每当在Android设备中点击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>
答案 0 :(得分:2)
最后我得到了答案。希望这会对其他人有所帮助。
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="*.youtube.com"
android:pathPrefix="/watch"
android:scheme="http" />
<data
android:host="*.youtube.com"
android:pathPrefix="/watch"
android:scheme="https" />
</intent-filter>
答案 1 :(得分:0)
<intent-filter>
<data android:host="www.youtube.com/watch?v=" android:scheme="http" ></data>
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW" />
</intent-filter>