Questions tagged [mms]

Multimedia Message Service(MMS) is an extension of the Short Message Service(SMS) protocol which allows for multimedia to be passed in messages. Microsoft Media Server(MMS) is Microsoft's proprietary network streaming protocol for Windows Media.

585 questions
4
votes
1 answer

startUsingNetworkFeature and requestRouteToHost Depreciated in 6.0 alternative to this

Ready device for sending mms works fine in Kitkat but Pro KitKat version startUsingNetworkFeature is depreciated. final int result = mConnMgr.startUsingNetworkFeature( ConnectivityManager.TYPE_MOBILE, "enableMMS"); …
Sohail Zahid
  • 8,099
  • 2
  • 25
  • 41
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
4
votes
1 answer

Can you send rich text messages via Twilio?

I am trying to send a rich text message via Twilio. I am able to send regular SMS messages, but I want to include a hyperlink in the body of the text. I tried the twilio mediaUrl to include an rtf file, but that didn't work. Including html in the…
Warren Krewenki
  • 3,523
  • 2
  • 17
  • 11
4
votes
1 answer

Android - How to be the first to receive WAP PUSH (MMS)

I would like to intercept incomming MMS to enable mobile data. For that, I need to intercept them before any other app. I have setup my intent filter to receive WAP_PUSH_RECEIVED_ACTION broadcasts with the highest possible priority. But, in the…
Sigma Pic
  • 91
  • 1
  • 7
4
votes
1 answer

How to get recipients from Twilio group MMS?

I want to build a Twilio app that can receive a group MMS and return a message back to the group. Is it possible to send and receive group MMS messages on Twilio? Also is it possible to retrieve all of the participant numbers in the group?
Tim Shi
  • 257
  • 3
  • 9
4
votes
3 answers

Android custom keyboard for sending images

I am currently trying to implement a custom keyboard that sends an image (possibly via an intent?) to a certain application. More specifically, I am trying to I am trying to create a key on a custom keyboard that would send an image to the default…
user1927638
  • 1,133
  • 20
  • 42
4
votes
3 answers

Take screenshot and send it programmatically

When a user taps on a button in my app, I'd like to take a screenshot of the current view and open up a text message with that screenshot image as an attachment. How can I do this in iOS7? (I've seen posts on how to take a screenshot but not…
Kreutzer
  • 328
  • 4
  • 12
4
votes
1 answer

How to write to Local MMS DB Kitkat after receiving it?

In the KitKat version of Android, how do you write an MMS message to the local MMS database after receiving it (After you make your app the Default SMS app)? The documentation and upgrade blogs explain how to receive the MMS message but I can't…
4
votes
1 answer

Android - Query All MMS & SMS from Specific Thread_ID

How can I query all messages sent by a specific address? I couldn't find my answer on StackOverflow after many days of searching. I'm currently getting all messages like this: Uri uri = Uri.parse("content://sms/"); Cursor managedCursor =…
Pkmmte
  • 2,822
  • 1
  • 31
  • 41
4
votes
1 answer

How to Differentiate MMS and SMS in android?

How to Differentiate MMS and SMS via MMS/SMS listeners in Android? Because I got SMS counts as in MMS counts? I am calculating Total MMS as using following code. Uri mmsInboxUri = Uri.parse("content://mms/inbox"); Uri mmsSentUri =…
Pragnesh Soni
  • 197
  • 1
  • 12
4
votes
0 answers

SKPSMTPMessage sending messages through GMAIL as MMS not delivered

I'm using SKPSMTPMessage to send emails from our app. This allows us to attach a picture to the email and have that image automatically sent without the user tapping the send button. This works perfectly to send images to email accounts. But, I've…
mejim707
  • 431
  • 3
  • 16
4
votes
1 answer

Sending MMS on iPhone using CoreTelephony

I am interested in sending an MMS within a private application on the iPhone. A lot of the information I need is proprietary, and therefore I can't find it anywhere. Basically, I'm looking for the proper way to construct a CTMessage and encode it…
E Klonowski
  • 183
  • 1
  • 9
4
votes
2 answers

How do I sort SMS and MMS together?

I'm implementing the methods discussed here: How to Read MMS Data in Android? I'm trying to read SMS and MMS into a single listview. I'm doing pretty well, but when I try to sort I'm getting all of the SMS sorted together followed by all of the MMS…
Dawson Goodell
  • 418
  • 2
  • 5
  • 15
4
votes
2 answers

Developing customized version of built-in SMS/MMS Android Application

Okay, here's the situation: I'm developing an application for a client (or trying to do so). It requires much (if not all) of the same functionality as the built-in SMS/MMS application. So, I thought - HEY! Android is open source right? I can…
Ginzorf
  • 769
  • 11
  • 19
4
votes
1 answer

Android MMS Intent with with Image and body text

I am trying to create an intent that will start the MMS application for me with an image file attached and some pre-defined text present in the message body. Thus far I've been able to accomplish either or, but not both at the same time. Things…
FoamyGuy
  • 46,603
  • 18
  • 125
  • 156