如何在whatsapp上共享音频..它不起作用

时间:2018-08-11 09:22:12

标签: java android

如何在WhatsApp上共享音频?这是我的代码:

 Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
 shareIntent.setType("audio/mp3");
 shareIntent.putExtra(android.content.Intent.EXTRA_STREAM, Uri.parse(dialog_audio));
 context.startActivity(Intent.createChooser(shareIntent, "mp3 shared!"));`

1 个答案:

答案 0 :(得分:0)

尝试添加此行

shareIntent.setPackage("com.whatsapp");

并记住要获得许可

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>