gpt4 book ai didi

android - 如何获取 youtube 网址并在我的应用中播放?

转载 作者:行者123 更新时间:2023-11-29 21:23:24 25 4
gpt4 key购买 nike

从过去 2 天开始,我一直在寻找这个问题,但很遗憾,我没有得到任何满意的答案。我的问题是,每当在 Android 设备中点击 Youtube 网址时,它应该将我的应用程序列为 Complete action using 我已经尝试了很多但没有得到它。这是我试过的代码。

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

最佳答案

我终于得到了答案。希望这会对其他人有所帮助。

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

关于android - 如何获取 youtube 网址并在我的应用中播放?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20465137/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com