4

我正在尝试使用意图过滤器以以下格式拦截 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>
4

1 回答 1

4

路径只涉及路径,而不是像您的查询字符串?XXXX

于 2012-05-03T20:35:12.067 回答