Match HTTP parameters in URL with Android Intent Filters

后端 未结 1 1202
无人共我
无人共我 2021-01-11 16:38

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 u

相关标签:
1条回答
  • 2021-01-11 16:50

    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)

    0 讨论(0)
提交回复
热议问题