gpt4 book ai didi

android - 让我的应用出现在 YouTube 分享中?

转载 作者:行者123 更新时间:2023-11-29 15:44:04 24 4
gpt4 key购买 nike

我知道这个问题已经被问过很多次了,但我已经尝试过这些答案,但没有一个奏效。这是我当前的 Intent 过滤器

<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" android:scheme="http" />
</intent-filter>

我正在寻找的答案是 android youtube: share a youtube video TO my app?How to appear my app in YouTube share via list?

但出于某种原因,它们对我不起作用。我尝试了很多替代方案,使用 android:host,使用不同的方案,特定的 mime 类型。单击“分享到我的应用程序”后,我只需要获取 youtube 视频的网址。有什么想法吗?

最佳答案

你必须添加:

<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>

在您的 list 文件中(我刚刚试过 ;))。

来源:Youtube intent filter & scheme更多信息:http://developer.android.com/training/basics/intents/filters.html

关于android - 让我的应用出现在 YouTube 分享中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35591413/

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