2015-05-08 52 views
2

在WindowsPhone上,您可以使用URI关联启动一些应用程序。现在我明白了,通过使用来实现其他应用程序的启动:检查是否存在响应给定URI的应用程序

Windows.System.Launcher.LaunchUriAsync(new System.Uri("<custom-uri-scheme>:<path>")); 

但我们告诉Launcher开始其他应用程序之前,我们想检查是否实际安装的应用程序。

是否有可能检查是否存在响应给定URI的应用程序?我在寻找类似至iOS的[[UIApplication sharedApplication] canOpenURL:<url>]

+2

看起来他们意识到,该功能并不存在因为[QueryUriSupported](https://msdn.microsoft.com/en-us/library/windows/apps/windows.system.launcher.queryurisupportasync.aspx)将在Mobile 10中发布。 –

回答

相关问题