以下链接帮助打开Facebook应用,如果,已安装
Launcher.LaunchUriAsync(new Uri("fb://"))
我需要知道facebook是否安装了以下情况,
if(installed)
{
//my code
}
else
{
"not installed"
};
由于
答案 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