Android深层链接url模式

时间:2017-03-07 14:35:18

标签: android deep-linking

我想在我的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" />

0 个答案:

没有答案