Questions tagged [android-mms]
47 questions
5
votes
0 answers
Sending MMS messages programmatically
I looked at code here: How to send image via MMS in Android?
And here: Unable to send MMS using SmsManager
And I did some research from other places as well, but so far I'm quite confused about how to send MMS messages to people without using…

jortyjorts
- 51
- 3
5
votes
2 answers
Find and interate all SMS/MMS messages in android
First and foremost, I found this answer particularly helpful. However, it made me wonder how one goes about finding such information.
I can't seem to figure out how to iterate all the messages in my inbox. My current solution uses…

Chemistpp
- 2,006
- 2
- 28
- 48
5
votes
1 answer
Send mms in background service without showing any interface
The below code is navigating me too default MMS app with the photo, text and number
Intent mmsIntent = new Intent(Intent.ACTION_SEND);
mmsIntent.putExtra("sms_body", "text");
mmsIntent.putExtra("address",…

Pranav C Balan
- 113,687
- 23
- 165
- 188
4
votes
1 answer
Sending MMS in android with Image, Text and phone number
I am sending mms via android intent. I am adding the code. Please review
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(intent.EXTRA_TEXT, "Test message");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new…

Umair_UAS
- 113
- 1
- 10
4
votes
0 answers
Android: Issue in sending MMS with SmsManager programmatically
I need to send MMS programmatically for which Android has provided support from Lollipop:
http://developer.android.com/reference/android/telephony/SmsManager.html#sendMultimediaMessage(android.content.Context, android.net.Uri, java.lang.String,…

Vineet Shukla
- 23,865
- 10
- 55
- 63
3
votes
0 answers
Send and read MMS with sendMultimediaMessage
I know there are a ton of similar, older questions on SO about this, but I'm not having any luck finding what I need.
Sending
I want to be able to send an MMS message using Android's SmsManager.sendMultimediaMessage function. More specifically, I…

Potassium Ion
- 2,075
- 1
- 22
- 39
3
votes
1 answer
Unable to send MMS using SmsManager
I am trying to make an app that would send a MMS without using the native Android messaging app. I followed the example here. My log statements seem to be correctly printing, but I can't figure out why the MMS is not being sent.
Also on a different…

labananala
- 129
- 1
- 3
- 11
2
votes
0 answers
Android MMS Content Provider does not store Transaction IDs
I'm developing an app that has a BroadcastReceiver that listens for the WAP_PUSH_RECEIVED_ACTION and then attempts to download the content of the MMS using downloadMultimediaMessage().
However, this only works if the default messaging app (which is…

AxiomaticNexus
- 6,190
- 3
- 41
- 61
2
votes
3 answers
Send SMS won't startActivity
I want to send SMS from my application, for which I have written below code, which is pretty simple. But the issue I am facing is, No activity is started on sending message
Method to send a message:
private void sendSMS(Context context, String…

John Bravado
- 137
- 4
- 10
2
votes
0 answers
com.android.mms crashes with ACTION_SEND_MULTIPLE action in intent
I am trying to send multiple images with com.android.mms via intents, but it crashes.
The mms works correctly when I send a single image using ACTION_SEND.
Does any one have some insights as to why this is the case? ACTION_SEND_MULTIPLE should be a…

Angel Koh
- 12,479
- 7
- 64
- 91
2
votes
1 answer
My phone number in mms address field of android conversation
I develop simple sms/mms client. With sms everything work good, but with mms I have problem related to address field in conversation.
I have next method to load conversations. There are last sms and mms.
public static List…

vchornenyi
- 336
- 5
- 17
2
votes
1 answer
How can I send MMS to emulator using adb command?
I am developing an Android message application. For that I need to integrate SMS, MMS features. I followed this blog to implement the features (here is the blog:…

Raghu Mudem
- 6,793
- 13
- 48
- 69
1
vote
0 answers
How do I send an SMS which has an image along-with the text body in Android (java)?
I am looking for a way to send an sms, which has an image along with the message body to a series of numbers with the help of a for loop. I've figured out a way of automatically sending simple text message to a CSV list of numbers using the below…

Sonal
- 137
- 2
- 13
1
vote
0 answers
How to get the phone number from MMS message URI string in Android
I am building an Android application using Kotlin. In my app, I need to retrieve the sender address/ phone number of the MMS message from the URI string. I have a URI string in this format, content://mms/inbox/60.
I tried using Id like this
private…

Wai Yan Hein
- 13,651
- 35
- 180
- 372
1
vote
0 answers
Image is not attaching to SMS
I am trying to share image and text via SMS. I am adding the image Uri but Image is not attached with SMS. What is wrong with my code please tell me Advance Thanks.
`Intent share = new Intent(Intent.ACTION_VIEW);
…

HusnainMohsin
- 21
- 4