我試着通過WhatsApp的共享MP3文件。它可以與其他應用程序(如Gmail)完美協作,但它可以在whatsapp上運行。誰能幫我?我需要添加一些putExtra()嗎?Intent.ACTION_SEND WhatsApp的
這裏是我的代碼:
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」中,但我收到'無法發送,請重試'消息 – 2014-12-17 11:19:20