我正在尝试使用意图过滤器以以下格式拦截 QR 码上的 URL: https ://qx.process.com?f=anyValue 也就是说,如果指定的 URL 为 'f=,我只想拦截它' 指定的参数。我已经尝试过了,但它不起作用:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="https" android:host="qx.process.com"
android:pathPrefix="\\?f=*">
</data>
</intent-filter>