我想对自定义网址使用意图过滤器
这是我的网址的示例:
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>
我尝试了很多方法,但是没有用,您能帮我吗?