我有一个特定的 URL,我想从带有意图过滤器的 web 视图将其重定向到我的应用程序中的特定活动。如何在 Android 上实现我自己的 URI 方案描述了如何为浏览器页面执行此操作,但是当通过 webview 访问该 URL 时,相同的意图过滤器不起作用。是否需要将其他任何内容添加到此意图过滤器以捕获这些 webview 链接?
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:host="myurl.com/stuff" android:scheme="http"></data>
</intent-filter>`