Xamarin.Android – Diğer uygulamalarla paylaşım (Link/Text/Html/Image)

17 Şub
XamarinAndroidShareWithOtherApps

Text/Link paylaşımı için Intent sharingIntent = new Intent(Android.Content.Intent.ActionSend); sharingIntent.SetType("text/plain"); sharingIntent.PutExtra(Android.Content.Intent.ExtraText, "https://play.google.com/store/apps/details?id=" + PackageName); StartActivity(Intent.CreateChooser(sharingIntent, "Sharing link option")); string shareBodytext = string.Format("<html>" + "<title>{0}</title>" + "<body>Im watching {1} – {2}x{3} <br>" + "<img src='{4}'/> <br>" + "Check out app at: https://play.google.com/store/apps/details?id={5}"+ … Read More »