我有这个代码来解雇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
。
我可以这样做吗?怎么样?