我正在尝试将一个intent过滤器放在一起,以便在浏览器中访问某个HTML URL时启动我的应用程序。当它是标准网址时,我没有遇到任何问题,例如www.stonyx.com。
但是,我需要将URL与HTTP参数匹配,例如www.stonyx.com/?pagename,它是后面的部分吗?我无法匹配。
我尝试过使用android:path,android:pathPrefix和android:pathPattern,但似乎没有人为我做...不确定是不是因为我做错了什么或是因为它只是因为这是带有问号的php路径。任何帮助都非常感谢。
P.S。这就是我的意图过滤器目前的样子
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:host="www.megaupload.com" android:scheme="http"></data>
</intent-filter>
答案 0 :(得分:11)
你做不到。 :(
根据http://developer.android.com/guide/components/intents-filters.html:
每个元素都可以指定URI和数据类型(MIME媒体类型)。 URI的每个部分都有单独的属性 - 方案,主机,端口和路径:
方案://主机:端口/路径
没有参数或查询字符串。 (因此,?标记之后的部分根本不与任何东西匹配)