gpt4 book ai didi

android - 启动 Gmail 以发送带有附件的邮件

转载 作者:搜寻专家 更新时间:2023-11-01 09:12:38 24 4
gpt4 key购买 nike

在我的应用程序中,用户有机会导出和导入他的数据文件,我还想添加通过邮件作为附件发送此数据文件的选项。我怎样才能做到这一点?感谢您的帮助。

最佳答案

我发送带有图片附件的电子邮件的代码:

public void sendViaEmail(String pAttachmentPath, String pSubjectLine) {
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, pSubjectLine);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,
"Screenshot ****************");
emailIntent.setType("image/jpeg");
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile("file://" + pAttachmentPath));
mActivity.startActivity(emailIntent);
}

或者

public void sendViaEmail(File pAttachmentFile, String pSubjectLine) {
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, pSubjectLine);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,
"Screenshot ****************");
emailIntent.setType("image/jpeg");
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(pAttachmentFile));
mActivity.startActivity(emailIntent);
}

关于android - 启动 Gmail 以发送带有附件的邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7148475/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com