我如何从应用程序共享视频?

How can i share video from application?

我想从应用程序分享视频,但我不知道该怎么做。如何在不下载的情况下分享视频?

我试过下载视频然后分享,但我不需要下载那个视频。

                String type = "Video/*";
                String fileName = mNum;
                String MediaPath = Environment.getExternalStorageDirectory() + "/folder/" + str;
                MediaPath = MediaPath.replace("/storage/emulated/0/folder/","storage/emulated/0/Android/data/relax.justrelax/files/folder/");

                Intent share = new Intent(Intent.ACTION_SEND);
                share.setType(type);
                File file = new File(MediaPath);
                Uri uri = Uri.fromFile(file);
                share.putExtra(Intent.EXTRA_STREAM, uri);
                startActivity(Intent.createChooser(share, "share"));

我可以分享下载

How share video without download?

使用 EXTRA_TEXT 并将 URL 作为消息的一部分放入。