问题
Can any one help me with sending MMS programmatically in android, since I am new to developing, I am having trouble understanding this link!. If anyone could give me a working example that would be great. I've spent a couple of weeks at it now and can;t figure it out. Thanks in advance.
回答1:
there is no public API for handling MMS in android. There are some workarounds, but it may not work on some devices.
回答2:
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra("sms_body", "some text");
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url));
sendIntent.setType("image/png");
you need more clarification go to this link http://jtribe.blogspot.in/2008/12/sending-mms-with-android.html
来源:https://stackoverflow.com/questions/9702171/sending-mms-in-android-programmatically