2

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

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

我只需要在“激活”点之前识别链接。我的意图如下:

<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>

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

4

1 回答 1

1

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

于 2012-07-26T21:09:14.150 回答