3

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 に答える