Skip to content Skip to sidebar Skip to footer

How To Detect Mms Fully Downloaded In Android?

I want to implement a BroadcastReceiver that is triggered after a MMS is fully downloaded. I already know about the android.provider.Telephony.WAP_PUSH_RECEIVED action but this is

Solution 1:

I figured this out - at least a solution that works for me.

I've created a ContentObserver (which I didn't know existed when I asked this question) that listens to the URI content://mms-sms/ and children for changes. It gets called several times in the MMS receiving process, one of which seems to occur after the MMS is downloaded.

Post a Comment for "How To Detect Mms Fully Downloaded In Android?"