我需要创建一个可以检测网址的意图过滤器,如下所示:
myAppScheme:// myAppHost K1 = V1&安培; K2 = v2和安培; K3 = V3&安培; K4 = V4
这是我的意图过滤器
<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:host="myAppHost"
android:pathPrefix="/"
android:scheme="myAppScheme" />
</intent-filter>
它显示编译错误如果我使用android:pathPrefix =“?”。它工作正常如果我替换'?'在上面的url链接中使用斜杠(/)。我怎么样'?'在网址中。请指导我。