2

I would like to know if I can launch a program via incoming MMS/SMS? More on the MMS side of things.

Workflow:

  • MMS sent to Android device
  • self executable MMS

Any thoughts?

Phill Pafford
  • 83,471
  • 91
  • 263
  • 383

2 Answers2

4

Yes. You can create a BroadcastReceiver to listen for the android.provider.Telephony.SMS_RECEIVED intent. In the receiver you can launch another activity to show the message or whatever. There is an example in the sdk and you can also check out source to SmsPopup.

Robby Pond
  • 73,164
  • 16
  • 126
  • 119
0

as far as I know sms and mms are both handled in the same way. How to use, see above

poeschlorn
  • 12,230
  • 17
  • 54
  • 65