我已经设置了以下意图过滤器,用于检测要在我们的应用中打开的链接。
<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="share.example.tv"
android:pathPrefix="/"
android:scheme="https" />
<data
android:host="example.tv"
android:pathPrefix="/u"
android:scheme="https" />
</intent-filter>
我希望我的应用在2个链接下方打开
但是我的应用程序也正在显示这些链接
如果我将两个链接都放在不同的意图过滤器中以进行相同的活动,如下所示