我有以下链接,我想触发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
不起作用。有谁知道为什么?