是否可以将特定URL与Windows Phone 8.1应用程序相关联? 当有请求以格式打开URL时,例如http://myservice.mydomain.com?Params ...来自浏览器中的电子邮件或页面,我的应用程序将处理一个URL。 在Android上,可以在清单中使用intent-filter来处理某些活动:
...
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="myservice.mydomain.com" android:scheme="http" />
</intent-filter>
...
感谢。