通过Skype在android上共享音频文件

时间:2017-04-10 12:49:48

标签: android android-intent skype

我使用一个非常简单的代码来共享我的音频:

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的提示吗?

0 个答案:

没有答案