Sending sound file with a SMS Intent?
I have this code to fire SMS Intent :
String uri= "smsto:";
Intent smsIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse(uri));
smsIntent.putExtra("sms_body", msgText);
smsIntent.putExtra("compose_mode", true);
startActivity开发者_高级运维(smsIntent);
I want to attach a sound file (.amr file) to the message
. This file is in the raw folder
.
Can I do this? and how?
Take a look at this for how to send an MMS and this to see how to get a stream to provide to the MMS intent.
精彩评论