如何分享应用程序中的视频?

时间:2019-07-20 11:35:34

标签: android android-studio video share

我想从应用程序共享视频,但是我不知道该怎么做。如何不下载就共享视频?

我尝试下载视频并分享,但是我不需要下载该视频。

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

我可以与下载共享

1 个答案:

答案 0 :(得分:1)

  

如何不下载就共享视频?

使用EXTRA_TEXT并将URL放入邮件中。