1

我正在尝试使用 ACTION_SEND_MULTIPLE 意图同时共享视频文件和文本。

现在,这在 GMAIL 中有效(附件中的视频和邮件正文中的文本),但是我也想在 Whatsapp 中做同样的事情,但它没有出现在意图的应用程序列表中。

我的代码是下一个:

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"));

谢谢你的帮助。

4

2 回答 2

1

这可能意味着 Whatsapp 不支持这种意图 (ACTION_SEND_MULTIPLE)。

于 2012-10-29T08:38:27.327 回答
1

现在,由于 whatsapp 的新更新,您的代码可以工作,在此之前不接受这种意图 (ACTION_SEND_MULTIPLE),因为它一次只接受一个文件。

Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE);
shareIntent.setType("image/png");    
shareIntent.putExtra(android.content.Intent.EXTRA_STREAM,
    Uri.parse("file:///mnt/sdcard/UserImages/"+ ParseUser.getCurrentUser().getObjectId() + ".png"));    
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT,"Hello test");    
startActivity(Intent.createChooser(shareIntent,"Share"));  
于 2014-11-22T10:22:30.203 回答