如何处理传入的彩信

发布于 2024-10-29 22:47:15 字数 206 浏览 0 评论 0原文

我希望我们的应用程序检查传入的短信和彩信,检查它们的内容,然后如果它们是我们感兴趣的内容,则记录并显示它们。然后阻止他们访问标准消息应用程序。我们已经在 SMS 消息中使用此功能一段时间了,但我找不到任何示例或文档来解释如何从传入的 MMS 消息中检索数据内容。

我发现的只是从消息内容提供商检索彩信内容的应用程序。我想我们会等到它到达那里然后检索内容并将其删除。但这似乎有点落后。

I want our app to examine incoming SMS and MMS messages, examine their contents, then if they are something we are interested in, log and display them. Then block them from going to the standard messaging app. We've had this working with SMS messages for a while, but I can't find any samples or documentation explaining how to retrieve data content from incoming MMS messages.

All I've found are apps that retrieve MMS contents from the Messaging content provider. I suppose we wait till it gets there then retrieve the content and remove it. But that seems kind of backward.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不咬妳我踢妳 2024-11-05 22:47:15

检查此项目

http://code.google.com/p/android-notifier/

它包含 MMS 解析器实现。但它仅支持标头,因此您可以获得有关彩信类型、发件人电话号码等信息。

Check this project

http://code.google.com/p/android-notifier/

It contain MMS parser implementation. But it support only header, so you can get information about type of MMS, sender phone number, etc.

梦初启 2024-11-05 22:47:15

克隆此 GIT 存储库:

https://android.googlesource.com/platform/frameworks/base

并查看此文件夹 core\java\com\google\android\mms\pdu\

这是 MMS 标头和正文解析器。如果您可以看到如何使用它的示例,请下载此 GIT 存储库:

https://android.googlesource.com/platform/packages/apps/Mms" rel="nofollow">https://android.googlesource.com/platform/packages/apps/Mms" googlesource.com/platform/packages/apps/Mms

Clone this GIT repository:

https://android.googlesource.com/platform/frameworks/base

And look to this folder core\java\com\google\android\mms\pdu\

Here is MMS header and body parser. If you can see example how to use it download also this GIT repository:

https://android.googlesource.com/platform/packages/apps/Mms

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文