我在 Manifest 中有一个意图过滤器,它处理对 url 的点击,如果 url 匹配我的应用程序启动的过滤器数据。
<intent-filter>
<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="*" port="8765" android:path="/mypath" />
</intent-filter>
当架构为“http”时,意图过滤器有效,但如果我将其更改为“https”,则意图过滤器不会执行任何操作并且链接开始在浏览器中加载。
有人知道这里有什么问题吗?