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类中创建挂起的意图?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)