Sending Mms In Android Programmatically
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 exam
Solution 1:
there is no public API for handling MMS in android. There are some workarounds, but it may not work on some devices.
Solution 2:
IntentsendIntent=newIntent(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
Post a Comment for "Sending Mms In Android Programmatically"