将URL与Windows Phone 8.1应用程序关联

时间:2015-06-30 11:11:00

标签: url windows-phone-8.1

是否可以将特定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>
...

感谢。

1 个答案:

答案 0 :(得分:1)

您可以与自定义URI架构建立URI关联,例如“myapp:” 在此处阅读更多内容:URI Associations