gpt4 book ai didi

android - 使用 Intent 和 scheme 来启动应用程序 android

转载 作者:行者123 更新时间:2023-11-29 02:02:47 25 4
gpt4 key购买 nike

我正在尝试获取一个 Web URL 来为我的应用程序打开/启动一个 Activity ,但它不起作用。 URL 类似于以下内容:

https://zzz.yyy.com/activate?user= "123123123"&token="absdi24"

我只需要识别到“激活”点的链接。我的 Intent 设置如下:

<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="https" android:host="zzz.yyy.com"
android:path="/activate*"/>
</intent-filter>

我已经尝试过在“路径”末尾使用和不使用通配符 (*) 的这段代码,但到目前为止没有任何效果。缺少什么?

最佳答案

android:path 是字面上的完整路径。尝试 android:pathPrefixandroid:pathPattern - 在这种情况下,pathPrefix 似乎就足够了。

关于android - 使用 Intent 和 scheme 来启动应用程序 android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11677863/

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