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

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

    There is no option for Facebook, but you can share email and MMS with Bluetooth. Here is my code. Take a look if it helps you:

    Intent share = new Intent(Intent.ACTION_SEND);
    share.setType("audio/*");
    share.putExtra(Intent.EXTRA_STREAM,Uri.parse("file:///"+mypath));
    startActivity(Intent.createChooser(share, "Share Sound File"));
    break;
    

    Here my path is the path of the sound file on the SD card.

提交回复
热议问题