我想分享视频,我有它的链接,当用户想要分享该视频时,它会下载到应用程序中,
现在视频没有在 whatsapp 上共享,我现在不知道如何,这是我
尝试过但没有工作的代码。
Intent videoshare = new Intent(Intent.ACTION_SEND);
videoshare.setType("*/*");
videoshare.putExtra(Intent.EXTRA_STREAM, Uri.parse(Environment.DIRECTORY_DOWNLOADS+"/"+title));
videoshare.setPackage("com.whatsapp");
startActivity(Intent.createChooser(videoshare, "Share video"));
Run Code Online (Sandbox Code Playgroud)