1
私が意図して、以下のようなURLを捕獲しようとしている:インテント<data>定義 - ホスト、パスプレフィックス?
https://example.com/apple/orange?key=value
私は、次のを持っているが、動作していないよう:
<activity>
<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="https"
android:host="example.com"
android:pathPrefix="/apple/orange.*" />
...
どのように私がすべきURLをキャプチャするようにこれを変更しますか? [OK]を
おかげ
あなたがあなたの意思でそれを捕獲しようとしている方法を指定することができます。 –
okがフルアクティビティdefのために更新されました – user291701