我尝试在我的应用程序中添加一个共享按钮,我可以将一个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"));