symbian c++ 中使用了哪些事件捕获服务提供商发送的通知

发布于 2024-11-02 05:48:26 字数 326 浏览 5 评论 0原文

我知道标题不太清楚,所以让我尝试用一​​个例子来解释。比如说,当我们通过手机发送消息时,我们立即收到来自服务提供商的余额扣除通知。我的问题是在 symbian C++ 中使用哪个事件来捕获此通知。

我们可以改变通知的显示方式吗?例如,诺基亚 symbian 60 手机将这些通知显示为弹出窗口,其中某些手机使用整个屏幕来显示扣除的金额。我可以捕获此事件并以新消息的形式显示它吗?我的意思是说,余额扣除通知在我手机的收件箱中显示为一条消息,而不是仅仅弹出然后丢失。

提前致谢。

问候, 阿尼什

​请尽快尝试提供建议。我非常感谢您的回复,因为它们将帮助我决定我的申请策略。多谢。

I know the title isn't that clear so let me try to explain using an example. Say, when we send a message through my phone, we immediately recieve the balance deduction notification from our service provider. My question is that which event is used to catch this notification in symbian C++.

Could we possibly change the way notifications are displayed?? Say for eg., nokia symbian 60 phones show these notifications as a pop-up where some phones use the entire screen to show the deducted amount. Can I catch this event and show it in the form of a new message ?? I mean to say that the balance deduction notification is shown as a message in my phone's inbox but not as a mere pop-up and then lost.

Thanks in advance.

Regards,
Avanish

P.S. Please try to advice as soon as possible. I would highly appreciate your responses as they will help me in deciding the strategy for my application. Thanks a lot.

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

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

发布评论

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

评论(1

霊感 2024-11-09 05:48:26

如果我正确理解您的问题,您是在询问当使用即用即付 SIM 卡显示余额时,手机屏幕上显示的消息。这可能取决于服务提供商,但通常消息通知是 0 类 SMS 消息(也称为 Flash SMS)。

0 类 SMS 定义为:

Class 0 SMS:此消息立即显示在手机上,并将消息发送报告发送回 SC。该消息不必保存在移动电话或 SIM 卡上(除非移动用户选择这样做)。这种类型也称为 Flash SMS。

因此,您可以通过监视这些类型的传入短信来捕获这些通知(假设 SDK 允许这样做)。

If I understand your question correctly, you are asking about the messages that appear on the screen on a phone when used with Pay As You Go SIM showing the balance. This may depend on the service provider but usually, the message notifications are Class 0 SMS messages (also known as Flash SMS).

Class 0 SMS are defined as:

Class 0 SMS: This message is displayed on the mobile phone immediately and a message delivery report is sent back to the SC. The message does not have to be saved in the mobile phone or on the SIM card (unless selected to do so by the mobile user). This type is also referred to as Flash SMS.

Therefore, you can catch these notifications by monitoring for these types of incoming SMS (assuming the SDK allows this).

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