我想通过whatsapp分享一个mp3文件。它与gmail等其他应用程序配合得很好,但在whatsapp上不行。有人能帮我吗?我需要添加一些putExtra()吗?
下面是我的代码:
public void shareWithFriends(int id)
{
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("audio/mp3");
//share.putExtra(Intent.EXTRA_SUBJECT,"subject");
//Uri uri = Uri.parse("android.resource://com.igs.pokemonsoundboard/" + id);
Uri uri = Uri.parse("android.resource://com.igs.pokemonsoundboard/raw/" + R.raw.pikachump3);
share.putExtra(Intent.EXTRA_STREAM,uri);
//share.putExtra("sms_body","Ringtone File :");
startActivity(Intent.createChooser(share, "Share sound"));
}
谢谢,)
你应该复制你的音频文件到sdcard,并作为文件共享,而不是作为android资源,像这样:
final Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("audio/mp3");
shareIntent.putExtra(android.content.Intent.EXTRA_STREAM, Uri.parse("file://"+path+filename));
startActivity(Intent.createChooser(shareIntent, getString(R.string.share_sound)));
现在它应该可以通过whatsapp工作了
尝试将MIME类型更改为"audio/mpeg3",以便第二行读取
share.setType("audio/mpeg3")
WhatsApp也接受OGG格式:
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("audio/ogg");
shareIntent.putExtra(Intent.EXTRA_STREAM, getSoundUri());
startActivity(shareIntent);
你必须在你的代码中包含这个:
sendIntent.setPackage("com.whatsapp");