gpt4 book ai didi

android - 如何使用 intent 过滤器仅过滤特定的 URL

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:59:21 26 4
gpt4 key购买 nike

我想过滤特定的 URL:http://gaapa.cz/mobile/ *

但是这个过滤器在每个 URl 上都被触发——ehta 错了吗?

<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="gaapa.cz"
android:path="/mobile/.*"
android:scheme="http" />
</intent-filter>

最佳答案

根据 the docs here.,您想要使用路径、pathPrefixpathPattern

在您的情况下,pathPatternpathPrefix 都可以,

pathPattern="mobile/*"

pathPrefix="mobile"

但是,这并不能解释为什么您的过滤器匹配所有 URI。它应该不匹配,因为路径不理解“*”。我怀疑您的代码中的其他地方添加/缺少了一些东西。

关于android - 如何使用 intent 过滤器仅过滤特定的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9761123/

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