gpt4 book ai didi

java - 单击 .mp3 链接时打开我的 Android 应用程序

转载 作者:行者123 更新时间:2023-11-30 11:14:08 24 4
gpt4 key购买 nike

我正在尝试创建一个在我单击浏览器中的 .mp3 链接时打开的 Activity 。

这是我的 Intent 过滤器:

<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:scheme="file" />
<data android:scheme="http" />
<data android:host="*" />
<data android:mimeType="application/mp3" />
</intent-filter>

没有任何作用。

最佳答案

<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />

<data
android:host="*"
android:pathPattern=".*.mp3"
android:scheme="http" />
</intent-filter>

它没有用,因为我输入了:<action android:name="android.intent.action.SEND" />在 Intent 过滤器内部。现在我的 Activity 中只有多个 Intent 过滤器。

关于java - 单击 .mp3 链接时打开我的 Android 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26075904/

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