Android Intent过滤器pathPattern不起作用

时间:2013-08-28 07:56:29

标签: android android-intent intentfilter

我有以下链接,我想触发Activity

http://mypage.com/custom-description-text-with-some-random-numbers-a21-id20683066.html

意图过滤器:

        <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:host="mypage.com"
                android:pathPattern=".*-id.*.html"
                android:scheme="http" />
        </intent-filter>

不幸的是,此Intent不起作用。有谁知道为什么?

0 个答案:

没有答案