I send an MMS message with an audio file as follows:
Intent i3 = new Intent(Intent.ACTION_SEND); i3.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity"); i3.putExtra("address", номер телефона); i3.putExtra("sms_body", текстовое сообщение); i3.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(прикреплённый аудио файл)); i3.setType("audio/*"); startActivity(i3);
Is there a way to send an MMS without using new Intent(Intent.ACTION_SEND)
? That is, you need to send it so that the sending activity is not displayed, and the MMS message is sent immediately when you click on my button in my application.