我想将多个文件附加到电子邮件中。
首先,我正在准备Uri
's 列表。
void prepareListOfUri()
{
listOfUri = new ArrayList<Uri>();
File fileTemp = new File(android.os.Environment.getExternalStorageDirectory(), "BuyNowImages");
fileTemp.mkdirs();
for (int i = 0; i < listOfImageView.size(); i++)
{
try
{
ByteArrayOutputStream bos = new ByteArrayOutputStream();
Drawable drawable = listOfImageView.get(i).getDrawable();
Bitmap bitmapPicked = ((BitmapDrawable) drawable).getBitmap();
bitmapPicked.compress(CompressFormat.JPEG, 75, bos);
byte[] image = bos.toByteArray();
File file = new File(fileTemp, "buynow_product" + i + ".jpg");
file.createNewFile();
// write the bytes in file
FileOutputStream fo = new FileOutputStream(file);
fo.write(image);
Uri uri = Uri.parse("file://" + file.getAbsolutePath());
listOfUri.add(i, uri);
} catch (Exception e)
{
// TODO: handle exception
e.printStackTrace();
}
}
}
并用于附加和发送电子邮件
void sendMultipleAttachments()
{
try
{
Intent intentEmail = new Intent(Intent.ACTION_SEND);
intentEmail.setType("text/plain");
String[] recipients = new String[] { "" };
intentEmail.putExtra(Intent.EXTRA_EMAIL, recipients);
intentEmail.putExtra(Intent.EXTRA_SUBJECT, "subject of email");
intentEmail.putExtra(Intent.EXTRA_TEXT, "body of email");
intentEmail.setType("image/jpeg");
intentEmail.putParcelableArrayListExtra(Intent.EXTRA_STREAM, listOfUri);
startActivity(intentEmail);
} catch (android.content.ActivityNotFoundException ex)
{
Toast.makeText(this, "There are no email clients installed.", Toast.LENGTH_SHORT).show();
ex.printStackTrace();
} catch (Exception e)
{
e.printStackTrace();
Toast.makeText(this, "Exception " + e.getMessage(), Toast.LENGTH_SHORT).show();
}
}
我已经Uri
通过单独发送每个文件来检查 's 的列表是否准备得很好。但是在使用上面的代码发送多个文件时,我得到了以下信息Exception
。
Key android.intent.extra.STREAM expected Parcelable but value was a java.util.ArrayList. The default value <null> was returned.