-1

我正在开发一个应用程序,我必须通过电子邮件发送图像,我试过了 Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);

            emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, "xyz@gmal.com");
            emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "message");
            emailIntent.setType("image/png");

            ArrayList<Uri> uris = new ArrayList<Uri>();

            uris.add(Uri.parse("android.resource://" + getPackageName() + "/" + R.drawable.a));

            emailIntent.putExtra(Intent.EXTRA_STREAM, uris);

            startActivity(emailIntent);

但不幸的是,它给我的gmail 已停止。如何通过电子邮件发送图像,在此先感谢。

4

1 回答 1

0

使用文件获取图片存储路径,

 File img = new File(Environment.getExternalStorageDirectory()+"/Android/data/"+getApplicationContext().getPackageName()+"/", imagename+".png");

将该文件路径转换为 ​​Uri

Uri imageuri = Uri.fromFile(img);

使用通过电子邮件发送图像

Intent send_img = new Intent(Intent.ACTION_SEND);
                                        send_img.putExtra(Intent.EXTRA_EMAIL, "xyz@gmal.com"); 
                                        send_img.putExtra(Intent.EXTRA_SUBJECT, "email_subject");
                                        send_img.putExtra(Intent.EXTRA_STREAM, imageuri);
                                        send_img.putExtra(Intent.EXTRA_TEXT, "message");  
                                        send_img.setType("text/plain");
                                        send_img.setType("image/png");
 startActivity(Intent.createChooser(send_img, "Send Email..."));
于 2013-06-01T10:30:04.660 回答