3
使用下面的代碼通過電子郵件發送音頻文件,dropbox +++ .. 這不給我通過MMS發送相同文件的選項.. 任何人都知道如何將其附加到彩信並讓用戶發送,如果他/她想要?Android - 用MMS發送音頻文件
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("audio/3gpp");
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + aFile));
startActivity(Intent.createChooser(share, "Send file"));
我在做類似的事情! http://stackoverflow.com/questions/14452808/sending-and-receiving-mms-in-android – toobsco42 2013-01-22 06:42:04