开发者

Sending sound file with a SMS Intent?

开发者 https://www.devze.com 2023-03-19 20:13 出处:网络
I have this code to fire SMS Intent : String uri= \"smsto:\"; Intent smsIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse(uri));

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消