将图像作为附件发送[重复]
Posted
技术标签:
【中文标题】将图像作为附件发送[重复]【英文标题】:Sending an image as an attachment [duplicate] 【发布时间】:2019-05-07 19:49:29 【问题描述】:我正在创建一个应用程序,我想将捕获的图像作为附件发送 发送电子邮件正文,但无法实现上述目标。谁能指导我。
emailsend.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View view)
Log.i("Send email", "");
String[] TO = "";
String[] CC = "";
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setData(Uri.parse("mailto:"));
emailIntent.setType("application/image");
emailIntent.putExtra(Intent.EXTRA_EMAIL, TO);
emailIntent.putExtra(Intent.EXTRA_CC, CC);
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Your subject");
emailIntent.putExtra(Intent.EXTRA_TEXT, "Email message goes here");
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(pic));
try
startActivity(Intent.createChooser(emailIntent, "Send mail..."));
finish();
Log.i("Finished sending", "");
catch (android.content.ActivityNotFoundException ex)
Toast.makeText(clickimages.this, "There is no email client installed.", Toast.LENGTH_SHORT).show();
);'
【问题讨论】:
显示你到目前为止所做的事情 复制Count1Count2Count3 【参考方案1】:要将图像添加到您尝试发送的电子邮件中,您可以执行以下操作:
Uri uri = Uri.parse("file://" + filepath);
intent(Intent.EXTRA_STREAM, uri);
intent 是发送邮件的操作,图片的路径可以在 filepath 变量中找到。
【讨论】:
以上是关于将图像作为附件发送[重复]的主要内容,如果未能解决你的问题,请参考以下文章