Sharing audio file

前端 未结 7 1594
眼角桃花
眼角桃花 2020-12-03 03:48

I\'m trying to make a button for sharing an audio file. This is not working. First I tried to send the file right from my raw folder without copying it to the card of the ph

7条回答
  •  一整个雨季
    2020-12-03 04:23

    Below code worked for me

        SoundFiles soundFiles=.....
        String FullFilePath=soundFiles.getPath();
        Uri uri = Uri.fromFile(new File(FullFilePath));
        Intent share = new Intent(Intent.ACTION_SEND);
        share.setType("audio/*");
        share.putExtra(Intent.EXTRA_STREAM, uri);
        startActivity(Intent.createChooser(share, "Share Sound File"));
    

提交回复
热议问题