Search code examples
javaandroidmms

send mms without user interaction in android


 Intent intent = new Intent(Intent.ACTION_SENDTO);
 intent.putExtra("address", "12134567899");
 intent.putExtra("sms_body", "See attached picture");


 intent.putExtra(Intent.EXTRA_STREAM,
 Uri.parse("file:///sdcard/DCIM/Camera/2011-09-09 12.47.29.jpg"));
 intent.setType("image/png");


 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

 startActivity(intent);

i try code like this. if intent start mms compose ui was coming how can i overcome and send automatically


Solution

  • First of all. good luck. Since MMS isn't supported by the android sdk, you have 2 options:

    1. download the android mms aplication and try to understand what's going on there.

    2. follow this link: http://androidbridge.blogspot.com/2011/03/how-to-send-mms-programmatically-in.html

    only thing I found working at the moment....