Hello, Last time We had a problem with sending intents. Our application wants to send a email message using the external email client, to initialize this operation we use a intent. The base functionality like subject, cc addresses , bcc addresses, body, works correctly without any problems. The problem starts when we try to send a intent with more then one attachment. Below, I have put two example of code. The first is about adding one attachment and the second one more then one. Unfortunately, The second is not work correctly. The application with emails is not showing up.
// The first example: Uri uri = Uri.fromFile(new File(fullFilename)); intent.putExtra(Intent.EXTRA_STREAM, uri); intent.setType(mimeType); // The second example: ArrayList<Uri> uris = new ArrayList<Uri>(); Uri uri1 = Uri.fromFile(new File(fullFilename1)); Uri uri2 = Uri.fromFile(new File(fullFilename2)); uris.add(uri1); uris.add(uri2); intent.putParcelablearrayListExtra(Intent.EXTRA_STREAM, uris); intent.setType(mimeType); The question is why it is not work correctly. Can we do it other way ?? Do you have some ideas ?? Please help me. Best Regrets Grzegorz -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

