gpt4 book ai didi

android - 带有 intent-filter 参数的 pathPattern

转载 作者:行者123 更新时间:2023-11-29 14:38:29 26 4
gpt4 key购买 nike

我希望我的应用程序继续一些网络链接。我在 list 中为此添加了 intent-filter。它看起来像这样:

<activity android:name=".SomeActivity">
<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" android:host="*.something.com" />
<data android:pathPattern="/.*/download/.*" />
</intent-filter>
</activity>

它有效。但后来我被要求只处理那些指定了精确参数的 url。所以,我像这样更改了 pathPattern:

<data android:pathPattern="/.*/download/.*param=.*" />

然后我尝试在浏览器 url 中打开 http://something.com/en/download/what?param=1234但是模式不起作用,无法打开我的应用程序。

我对参数有疑问。可能是 pathPattern 根本不看它们?或者我还做错了什么?

最佳答案

我知道已经晚了,但这可能会节省一些人的时间。

没有参数或查询字符串。 (因此,? 标记之后的部分根本不匹配任何内容)

关于android - 带有 intent-filter 参数的 pathPattern,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21043635/

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