我在android中编写了一个下载管理器应用程序
我在Manifest中创建了这个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:scheme="https" />
<data android:scheme="http" />
<data android:scheme="ftp" />
<data android:host="*" />
Google Chrome将我的应用程序成功定义为下载管理器,但Mozila Firefox不会通过单击每个链接在Intent对话框中显示我的应用程序。
请帮我解决这个问题
答案 0 :(得分:0)
我找到了解决办法 放在这里使用任何人: 在清单中添加此行:
<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="http" />
<data android:scheme="https" />
<data android:mimeType="*/*" />
</intent-filter>