不支持将音频文件共享到whatsapp

时间:2017-03-06 17:48:29

标签: android eclipse

我尝试在我的应用程序中添加一个共享按钮,我可以将一个mp3文件发送到whatsapp但是如果我点击它们就显示我不支持此文件

这是我的代码

public void sharebutton1(View view){

        Intent share = new Intent (Intent.ACTION_SEND);
        share.setType("audio/mp3");
            share.putExtra(Intent.EXTRA_STREAM,Uri.parse("file:///"+R.raw.tst1));
        startActivity(Intent.createChooser(share, "Share Sound File"));

0 个答案:

没有答案