Match HTTP parameters in URL with Android Intent Filters -
When using a certain HTML URL in the browser, I try to gather an intention filter to start my application I am here. For example, as a standard URL such as www.stonyx.com, I have no problem doing this.
However, I need to match a URL with HTTP parameters such as www.stonyx.com/?pagename and it's a part of it later? I have tried to use Android: Path, Android: PathPrint, Android: Pathparent, and none of them is doing this to me ... Sure. It is not because of this that I am doing something wrong or if this is just because it is a php path with a question mark. Any help is highly appreciated.
P.S. At the moment, my intent filter looks
& lt; Intent-filter & gt; & Lt; Action Android: name = "android.intent.action.VIEW" & gt; & Lt; / Action> & Lt; Category android: name = "android.intent.category.DEFAULT" & gt; & Lt; / Category & gt; & Lt; Category android: name = "android.intent.category.BROWSABLE" & gt; & Lt; / Category & gt; & Lt; Data Android: host = "www.megaupload.com" Android: scheme = "http" & gt; & Lt; / Data & gt; & Lt; / Intent-Filter & gt;
You can not: (
According to: < / P>
Each element can specify a URI and a data type (MIME media type). Different features are: Plan, host, port, and path for each part of the URI:
scheme: // host: port / path
There is no parameter or query string (thus, the part after the sign just does not match with some) < / P>
Comments
Post a Comment