mms
How to send image via MMS in Android?
MMS is just a htttp-post request. You should perform the request using extra network feature : final ConnectivityManager connMgr = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE); final int result = connMgr.startUsingNetworkFeature( ConnectivityManager.TYPE_MOBILE, Phone.FEATURE_ENABLE_MMS); If you get result with Phone.APN_REQUEST_STARTED value, you have to wait for proper state. Register BroadCastReciver and wait until Phone.APN_ALREADY_ACTIVE appears: final IntentFilter filter = new IntentFilter(); … Read more
How to Read MMS Data in Android?
It’s kind of difficult to find documentation about this, so I will collect here all information I have found. If you are in a rush or just don’t like to read, jump to the How to get data from a SMS section. content://mms-sms/conversations This is the URI of the Mms and SMS provider… which allows … Read more
Sending and Receiving SMS and MMS in Android (pre Kit Kat Android 4.4)
I had the exact same problem you describe above (Galaxy Nexus on t-mobile USA) it is because mobile data is turned off. In Jelly Bean it is: Settings > Data Usage > mobile data Note that I have to have mobile data turned on PRIOR to sending an MMS OR receiving one. If I receive … Read more