发送任何 SMS 消息都会显示一个图标,以显示该消息“待发送至网络”。和“传送到网络”在安多里德

发布于 2024-12-03 07:24:36 字数 117 浏览 1 评论 0原文

发送任何 SMS 消息都会显示一个图标,显示该消息“待处理” 到网络”和“传送到网络”,但从不显示“传送到网络” 到手机”(或“上行发送”)短信状态。

有什么问题吗?我无法模拟这个问题?请帮忙....

Sending any SMS message displays an icon to display the message is "pending
to networks" and "delivered to network" but never displays the "delivered
to handset" (or "delivered upstream") SMS status.

What is problem ? i am unable to simulate this issue ? please help ....

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

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

发布评论

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

评论(2

在巴黎塔顶看东京樱花 2024-12-10 07:24:37

您需要设置广播接收器并在清单文件中声明它们。短信管理器有两个地方,广播接收器可以在其中工作

SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);

SentPI 和交付的 PI 将完成您想要的预期工作。

you need to setup broadcast receivers and also declare them in your manifest file. The Sms Manager has two places where the broad cast receiver works

SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);

SentPI and delivered PI will do the intended work that you want.

画▽骨i 2024-12-10 07:24:37

我认为以下链接可以解决您的问题,

http://mobiforge.com/developing/story/ sms-messaging-android

使用您的代码而不是 Toast 消息。

i think the following link solve your problem,

http://mobiforge.com/developing/story/sms-messaging-android

use your code instead of Toast message.

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