在我的应用中,我启用了深层链接,例如:
<activity android:name="com.example.android.DeepLinkActivity">
<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.bartsimposon.net" android:scheme="https"/>
<data android:pathPattern="/kwitchiboo/.*\\.html"/>
</intent-filter>
</activity>
当我进入智能手机浏览器时,我期待
https://www.bartsimpson.net\kwitchiboo\something.html
触发我的DeepLinkActivity
?