我在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
有什么问题? 有可能吗?