Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to use the ACTION_SEND_MULTIPLE intent to share at the same time a video file and a text.

Now, this works in GMAIL (video in the attachments and text in the body of the mail), however I want to do the same in Whatsapp too, but it doesn't appear in the list of apps of the intent.

My code is the next:

Intent sharingIntent = new Intent(
                    Intent.ACTION_SEND_MULTIPLE);

            sharingIntent.putExtra(Intent.EXTRA_TEXT, "Descarga la app en...");

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

            File file = new File(Environment
                    .getExternalStorageDirectory()
                    .getAbsolutePath()
                    + "/Talking/"
                    + nombreVideo
                    + ".3gp");

            Uri screenshotUri = Uri.fromFile(file);

            contenidos.add(screenshotUri);



            //sharingIntent.putExtra(Intent.EXTRA_STREAM,screenshotUri);


            sharingIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, contenidos);
            sharingIntent.setType("video/3gpp");


            startActivity(Intent.createChooser(
                    sharingIntent, "Share video using"));

Thanks for your help.

share|improve this question

1 Answer

This probably means Whatsapp does not support this kind of intent (ACTION_SEND_MULTIPLE).

share|improve this answer
That's correct. You can't help it. WhatsApp chose to accept only one file at a time. – Suraj Bajaj Oct 29 '12 at 9:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.