本文介绍了从BroadcastReceiver的开始服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个服务和广播接收器在我的应用程序,但我怎么直接从广播接收器推出的服务?使用
I have a Service and Broadcast Receiver in my application, but how do I launch the service directly from the Broadcast Receiver? using
startService(new Intent(this, MyService.class));
在一个广播接收器不工作,任何想法?
does not work in a broadcast receiver, any ideas?
谢谢!
编辑:
context.startService(..);
的作品,我忘了上下文部分
works, I forgot the context part
推荐答案
不要忘记
context.startService(..);
这篇关于从BroadcastReceiver的开始服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!