我可以通过收到的短信/彩信启动 Android 应用程序吗?
我想知道我是否可以通过传入的彩信/短信启动程序?更多关于 MMS 方面的内容。
工作流程:
- 将彩信发送到 Android 设备
- 自可执行彩信
有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。您可以创建一个 BroadcastReceiver 来监听 android.provider.Telephony .SMS_RECEIVED 意图。在接收器中,您可以启动另一个活动来显示消息或其他内容。 中有一个示例sdk,您还可以查看 SmsPopup 的源代码。
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.
据我所知,短信和彩信的处理方式相同。
使用方法见上文
as far as I know sms and mms are both handled in the same way.
How to use, see above