Hi i am trying to send mms using android messaging app and i want to know whether is there any methods as soon the user clicks send button then i should get a callback(means any listener) so that i can return back to my activity and how to know whether mms is send or not this is the code i have used for sending mms
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra("address", "895877");
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "subject");
Uri.parse("mms://");
Uri uri = Uri.fromFile(new File(Environment.getExternalStorageDirectory(), "er.png"));
sendIntent.putExtra("sms_body", "some text");
sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
sendIntent.setType("image/png");
startActivityForResult(sendIntent,requestCode);
any suggestions will be a great help