路径模式Android intent-filter

时间:2015-02-09 07:33:54

标签: android intentfilter

我在Android应用程序中使用深层链接。

我的网页在开始时包含数字,因此我需要在模式中检查它,如下所示:

<intent-filter android:label="test_label">
                <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="url.com" android:pathPattern="/[0-9]*,.*.html" />


            </intent-filter>

我的链接:

link.com/245576,example-url-example.html

有什么问题? 有可能吗?

1 个答案:

答案 0 :(得分:0)

首先,您将意图限制为http://url,因为它没有RegEx,因此您定义的路径无效。该路径只能包含一个公共前缀。您可以检查给出完整路径的意图。