The following works for a single attachment:
Intent sendIntent = new Intent("android.intent.action.SEND_MSG");
sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
sendIntent.setType("audio/3gpp");
ctx.startActivity(sendIntent);
but I would like to send multiple. I tried the following:
ArrayList<Uri> uris = new ArrayList<Uri>(ids.size());
// ... fill ursi with data
Intent sendIntent = new Intent("android.intent.action.LAUNCH_MSG_COMPOSE");
sendIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
sendIntent.setType("application/vnd.wap.multipart.related");
ctx.startActivity(sendIntent);
which opens the Messaging application and detects that this should be an MMS, but no attachments are added.
Does anyone know a solution?
Thank you for your answers.