gpt4 book ai didi

Android Intent Filter pathPattern 排除 url

转载 作者:太空宇宙 更新时间:2023-11-03 11:14:18 26 4
gpt4 key购买 nike

不确定这是否可能,但希望有人有解决方案。

我试图让我的 Android 应用拦截 mydomain.com/abc 形式的 url,但不是 mydomain.com/mp3/id

是否有可能使用 pathPattern 排除某些路径?

<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:host="mydomain.com" />
<data android:pathPattern="/.*" /> />
</intent-filter>

最佳答案

pathPattern 更像是 glob 而不是 regexp。如果你真的是指 mydomain/abc,你应该能够指定 android:host="mydomain.com"android:pathPattern="abc",但我猜你的意思是

匹配 mydomain.com/x

不匹配 mydomain/x/y

我认为这是不可能的。如果是,则可能涉及一些 pathPrefix 的使用。

关于Android Intent Filter pathPattern 排除 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19105078/

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