如何检查Facebook是否安装了WP8?

时间:2014-11-25 06:23:41

标签: windows-phone-7 windows-phone-8

以下链接帮助打开Facebook应用,如果,已安装

Launcher.LaunchUriAsync(new Uri("fb://"))

我需要知道facebook是否安装了以下情况,

if(installed)
{
//my code
}
else
{
"not installed"
};

由于

2 个答案:

答案 0 :(得分:0)

您无法检查是否安装了Facebook,Soundhound等第三方应用。您可以检查的唯一事项是设备上安装的已发布的应用列表。

你可以尝试一下,

var success = await Windows.System.Launcher.LaunchUriAsync(new Uri("fb://"));

if (success)
{
   // URI launched
}
else
{
   // URI launch failed
}

答案 1 :(得分:0)

Nop,您无法检查是否安装了第三方应用程序,除非它是您开发的应用程序。

参考:How to check if user has installed specific app on the WP8 device