0
でGmailに既存のイメージを添付すると、このコードから、私のコードここ 、Gmailに既存のイメージを添付しながら、私はいくつかの問題に直面していますXamarin
#region Attached Screenshot
_imageView = FindViewById<ImageView>(Resource.Id.imageView);
_imageView.Click += delegate
{
Intent = new Intent();
Intent.SetType("image/*");
Intent.SetAction(Intent.ActionGetContent);
Intent.PutExtra("return-data", true);
StartActivityForResult(
Intent.CreateChooser(Intent, "Select Picture"), PICK_FROM_GALLERY);
};
#endregion
ですどのようにこのコードにその画像を添付する場合は、
#region SendMail
Button sendButton = FindViewById<Button>(Resource.Id.button);
sendButton.Click += delegate
{
var email = new Intent(Android.Content.Intent.ActionSend);
email.PutExtra(Android.Content.Intent.ExtraEmail,
new string[] { "[email protected]", "[email protected]" });
email.PutExtra(Android.Content.Intent.ExtraCc,
new string[] { "[email protected]" });
email.PutExtra(Android.Content.Intent.ExtraSubject, "Hello Email");
email.PutExtra(Android.Content.Intent.ExtraText, "Hello from Mobility Team");
email.SetType("message/rfc822");
StartActivity(email);
};
#endregion
私は長い時間からこれをトリング午前、私のコードを示唆して はあなた