我想在我的Android应用中添加深层链接句柄。但我找不到如何只注册一些网址模式?例如,我希望我的应用只有在网址中包含“london”关键字时才会打开。我该如何实现呢?像这样:
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="www.mysite.com" android:pathPrefix="/*/london/*" android:scheme="https" />