Skip to content Skip to sidebar Skip to footer

Match HTTP Parameters In URL With Android Intent Filters

I'm trying to put together an intent filter to start my application when a certain HTML URL is accessed in the browser. I have no problems doing so when it's a standard url, like

Solution 1:

You can't. :(

according to http://developer.android.com/guide/components/intents-filters.html :

Each element can specify a URI and a data type (MIME media type). There are separate attributes — scheme, host, port, and path — for each part of the URI:

scheme://host:port/path

no parameters or query strings. (thus, the part after the ? mark is simply not matched against anything)


Post a Comment for "Match HTTP Parameters In URL With Android Intent Filters"