How to add a caption to a video when sharing video via WhatsApp using Intent

I tried to add text (caption) to the video I would like to share:

public void shareVideoWhatsApp() { Intent videoshare = new Intent(Intent.ACTION_SEND); videoshare.setType("*/*"); String downloadurl = "Here comes the url"; videoshare.putExtra(Intent.EXTRA_TEXT, downloadurl); videoshare.putExtra(Intent.EXTRA_STREAM, Uri.parse(StorageHandlerSDcard.getPath('v') + "/" + "video.mp4")); if(isPackageInstalled("com.whatsapp",this)) { videoshare.setPackage("com.whatsapp"); startActivity(Intent.createChooser(videoshare, "Share video and caption")); } else { Toast.makeText(getApplicationContext(), "Whatsapp is not installed!", Toast.LENGTH_LONG).show(); } } 

The video is shared without a title. Do you have an idea to combine video and title / text simultaneously through WhatsApp and Intent?

+4
source share

All Articles