无法从广播接收器取回数据

发布于 2024-11-02 04:35:51 字数 351 浏览 0 评论 0原文

你好 , 我引用并将代码添加到 BroadcastReceiver 和 Activity 中,该代码在 此链接

但我仍然无法将电话号码从广播接收器获取到另一个活动日志猫显示线路错误

String  sms = intent.getExtras().getString("sms-text");

请给我正确的解决方案。帮助我。

HI ,
I refered and add the code into BroadcastReceiver and activity ,which is given in this link.

But still I am having problem in getting phone number from my broadcast receiver into another activity log cat shows error at line

String  sms = intent.getExtras().getString("sms-text");

Plese give me right solution .help me.

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

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

发布评论

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

评论(1

梦在夏天 2024-11-09 04:35:51

我假设您不仅从广播接收器启动活动,而且还手动启动两个活动。在这种情况下,意图中就没有额外的内容。只需添加空引用检查:

Bundle bundle = intent.getExtras();
String sms = "";
if (bundle != null) {
  sms = bundle.getString("sms-text");
}

I assume you're starting the activity not only from broadcast receiver, but manually two. In that case there is no extra in the intent. Just add the null reference check:

Bundle bundle = intent.getExtras();
String sms = "";
if (bundle != null) {
  sms = bundle.getString("sms-text");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文