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"));
ご協力いただきありがとうございます。