Sharing audio file

前端 未结 7 1616
眼角桃花
眼角桃花 2020-12-03 03:48

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

7条回答
  •  生来不讨喜
    2020-12-03 04:23

    I'm using:

    final Intent shareIntent = new Intent(Intent.ACTION_SEND);
    shareIntent.setType("audio/mp3");
    shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(Environment.getExternalStorageDirectory().toString() + "/breakfast.mp3"));
    startActivity(Intent.createChooser(shareIntent, "Condividi attraverso:"));
    

    but gmail say "Can't attach empty file"

提交回复
热议问题