gpt4 book ai didi

android - 使用路径、路径前缀或路径模式的 Intent 过滤器

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

我的测试uri字符串是

http://test.host.com/path/test.html?key1=val1&key2=val2

然后我在 list 中制作 intent-filter

一个。 scheme & host(有效但我不想要)

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data
android:scheme="http"
android:host="test.host.com"
/>
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>

B. A & path(pathPrefix, pathPattern)(无效)

    <data
android:scheme="http"
android:host="test.host.com"

1. android:path="path/test.html" -> not worked (link to chrome broswer)
2. android:path="path" -> not worked (link to chrome broswer)
3. android:pathPrefix="path" -> not worked (link to chrome broswer)
4. android:pathPattern="user/invite.*" -> same (I do not know pattern)

/>

我想在 (path/test.html) 时启动我的应用程序,

最佳答案

您缺少开头的斜线。以下应该有效:

android:path="/path/test.html"

android:pathPrefix="/path/test.html"

关于android - 使用路径、路径前缀或路径模式的 Intent 过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19395938/

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