我使用一个非常简单的代码来共享我的音频:
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("audio/mp3");
share.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(getFilePath()))); //getFilePath() is valid, it works for email and telegram options
startActivity(Intent.createChooser(share, "Share"));
它适用于Email,Viber,WhatsApp和Telegram选项,但是当我使用Skype时,我得到一个祝酒词#34;无法发送文件"。有关如何修复skype的提示吗?