我想附加来自 SD 卡的音频文件和来自 Resource/drawable 文件夹的图像。我想在邮件成功发送到收件人后从 SD 卡中删除音频文件。请有人帮我解决这个问题。谢谢进步。
问问题
181 次
1 回答
0
试试这个音频:
private File file;
file = new File("audio file name/ path");
File filelocation = file ;
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("audio/mp4");
sharingIntent.putExtra(Intent.EXTRA_EMAIL, "xxxxxxxxxxxxxxx@gmail.com" );
sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+filelocation.getAbsolutePath()));
startActivity(Intent.createChooser(sharingIntent, "Send email"));
试试这个图像:
private File file;
file = new File("your image path");
File filelocation = file ;
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("image/jpeg");
sharingIntent.putExtra(Intent.EXTRA_EMAIL, "XXXXXXXXX@gmail.com" );
sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+filelocation.getAbsolutePath()));
startActivity(Intent.createChooser(sharingIntent, "Send email"));
于 2012-12-06T05:42:40.273 回答