android – 如何在BroadcastReceiver类中创建挂起的意图?

android – 如何在BroadcastReceiver类中创建挂起的意图?,第1张

概述我正在尝试在广播接收器内创建我的广播实习生,但我认为我没有为它输入正确的代码.待定实习生应该如何寻找广播接收器?我想发短信.并且需要等待发送它的意图. I’m trying to create I broadcast intern inside of a broadcast receiver but I don’t think I’m entering the right code for it. 我正在尝试在广播接收器内创建我的广播实习生,但我认为我没有为它输入正确的代码.待定实习生应该如何寻找广播接收器?我想发短信.并且需要等待发送它的意图.@R_403_6120@

I’m trying to create I broadcast intern insIDe of a broadcast receiver but I don’t think I’m entering the right code for it.

除了必须使用传入的Context对象之外,它与任何其他PendingIntent没有什么不同,因为broadcastReceiver不是Context:

public voID onReceive(Context ctxt,Intent incoming) {    Intent i=new Intent(ctxt,OnAlarmReceiver.class);    PendingIntent pi=PendingIntent.getbroadcast(ctxt,i,0));    // do stuff with PendingIntent here}
总结

以上是内存溢出为你收集整理的android – 如何在BroadcastReceiver类中创建挂起的意图?全部内容,希望文章能够帮你解决android – 如何在BroadcastReceiver类中创建挂起的意图?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1129588.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存