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

后端 未结 7 2490
星月不相逢
星月不相逢 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:51
    String sharePath = Environment.getExternalStorageDirectory().getPath()
        + "/Soundboard/Ringtones/custom_ringtone.ogg";
    Uri uri = Uri.parse(sharePath);
    Intent share = new Intent(Intent.ACTION_SEND);share.setType("audio/*");
    share.putExtra(Intent.EXTRA_STREAM, uri);
    startActivity(Intent.createChooser(share, "Share Sound File"));
    
    0 讨论(0)
提交回复
热议问题