我需要在跨平台Xamarin的应用程序中显示email
,facebook
或a site
等网址。
我有这段代码,但在文字中显示:
layout.Children.Add(new Label() { Text = "Email:", HorizontalTextAlignment = TextAlignment.Center });
layout.Children.Add(new Label() { Text = loader.Contacts.Email, HorizontalTextAlignment = TextAlignment.Center });
layout.Children.Add(new Label() { Text = "FaceBook:", HorizontalTextAlignment = TextAlignment.Center });
layout.Children.Add(new Label() { Text = loader.Contacts.Facebook, HorizontalTextAlignment = TextAlignment.Center });
我怎么能成功?
由于