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