3

我在 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”,则意图过滤器不会执行任何操作并且链接开始在浏览器中加载。

有人知道这里有什么问题吗?

4

1 回答 1

13

只需在过滤器中添加一条额外的数据行:

<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" />
  <data android:scheme="https" android:host="*" port="8765" android:path="/mypath" />
</intent-filter>
于 2012-11-28T11:47:28.817 回答