使用SMS Intent发送声音文件?

时间:2011-07-12 07:50:24

标签: android android-intent

我有这个代码来解雇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);

我想attach a sound file (.amr file) to the message。此文件位于raw folder

我可以这样做吗?怎么样?

1 个答案:

答案 0 :(得分:0)

请查看this有关如何发送彩信的信息,并this查看如何获取提供彩信意图的信息流。