如何从Xamarin.Forms中启动google photos应用程序?



使用

Launcher.OpenAsync("http://maps.google.com") 

谷歌地图应用程序打开漂亮,但与

Launcher.OpenAsync("http://photos.google.com") 

在浏览器中打开应用程序。

根据官方文件,

theOpenAsync(String)启动uri方案指定的应用程序

如果你像下面这样设置url它会启动google photos应用程序。我在我这边测试了一下,它确实打开了应用程序。
await Launcher.OpenAsync("http://photos.google.com");

更新:

如果您想分别启动应用程序,请尝试使用以下格式的链接:

for instagram
instagram://user?username=yourUserName
for twitter
twitter://userName?user_id=userId
for facebook
fb://page/page_id

相关内容

  • 没有找到相关文章

最新更新