Android: Is is possible to match a URL in an intent filter based on a hostname AND the presence of a prarameter
I would like to have an Intent filter that matches my specific web site, IF a particular parameter is present in the URL.
In a regex this would be something like:
http://my.domain.comp=
where "p" is the parameter I am looking for.
I have tried this with the following Intent filter
With no success. Removing the pathPattern element (as expected) catches all URLs for that host.
Is this possible, or is pathPattern limited to t开发者_StackOverflowhe strict definition of path, where queryParameters are not included?
精彩评论