开发者

Send Audio data with SMS in android

开发者 https://www.devze.com 2023-01-10 12:55 出处:网络
I am trying to send an audio file converted to a byte array with SMS using SMSManage开发者_如何学Pythonr.sendDataMessage.

I am trying to send an audio file converted to a byte array with SMS using SMSManage开发者_如何学Pythonr.sendDataMessage.

But, I am unable to send it to other phone. Can any suggest how can I do it?


SMS is for text based messages 160 character limit, but you could use MMS to send the Audio file itself as an attachment that is downloadable.

Try something like this

Intent sendIntent = new Intent(Intent.ACTION_SEND); 
sendIntent.putExtra("sms_body", "some text");     
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url)); // url would point to mp3 file
sendIntent.setType("audio/mp3"); 

Good References:

  • http://snipt.net/Martin/tag/android
0

精彩评论

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