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

后端 未结 7 2501
星月不相逢
星月不相逢 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:42

    Use following code its working for me to share audio via intent.

    String path = Environment.getExternalStorageDirectory()
                    .getAbsolutePath() + "/abc.mp3";
    
    
            Intent share = new Intent(Intent.ACTION_SEND);
            share.setType("audio/*");
            share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///" + path));
            startActivity(Intent.createChooser(share, "Share Sound File"));
    

提交回复
热议问题