android-自定义方案的Intent-filter pathPattern

时间:2019-01-13 12:36:20

标签: android android-activity android-manifest

我想对自定义网址使用意图过滤器

这是我的网址的示例:

http://example.com/pr2520/app

如果URL包含example.com/pr

,我只想运行我的应用程序

这是我的代码:

<intent-filter>
    <data
        android:host="example.com"
        android:pathPattern="/pr*"
        android:scheme="https" />

    <data
        android:host="www.example.com"
        android:pathPattern="/pr*"
        android:scheme="https" />

    <action android:name="android.intent.action.VIEW" />

    <category android:name="android.intent.category.BROWSABLE" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

我尝试了很多方法,但是没有用,您能帮我吗?

0 个答案:

没有答案