Share audio file (.mp3) via Facebook, email, and SMS/MMS

后端 未结 7 2522
星月不相逢
星月不相逢 2020-12-18 11:10

I have an audio file (.mp3) and some information related to it. I want to share with Facebook, E-mail, SMS/MMS, etc..

What I have done is: when user clicks on the sh

7条回答
  •  没有蜡笔的小新
    2020-12-18 11:37

    File f=new File("full audio path");
    Uri uri = Uri.parse("file://"+f.getAbsolutePath());
    Intent share = new Intent(Intent.ACTION_SEND);
    share.putExtra(Intent.EXTRA_STREAM, uri);
    share.setType("audio/*");
    share.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    context.startActivity(Intent.createChooser(share, "Share audio File"));
    

提交回复
热议问题