如何解决如何从AlarmManager启动的服务中找回意图?
| 我使用警报服务跳转到服务。服务启动时,我能否找回意图(我想从意图中获取数据)? 我的代码如下PendingIntent sender=PendingIntent.getService(this,myIntent,0);
am = (AlarmManager)getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP,c.getTimeInMillis(),sender);
如何从服务中获得“ myIntent”?没有像getIntent()这样的方法
在服役。我试图在onBind(Intent intent)中使用该intent,但这不是我想要的。
我想我解决了这个问题。
PendingIntent sender = PendingIntent.getService(this,0,myIntent,
PendingIntent.FLAG_ONE_SHOT);
问题出在旗帜上。现在我可以将自己的意图重新回到服务班上
OnStartCommand(Intent,int,int)
解决方法
如何从服务中获得“ myIntent”?
它作为参数传递给
onStartCommand()
(如果是IntentService
,则也传递给onHandleIntent()
)。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。