如何使用主屏幕小部件按钮关闭服务?
我有一个按钮,其 WidgetProvider 通过以下方式启动服务 待定意图。效果很好。我如何类似地附加一个 按钮的事件处理程序,以便当第二次按下时, 它会关闭服务吗?是否有适当的模式可以遵循 对于这样的事情?
谢谢。
I have a button whose WidgetProvider kicks off a service with a
PendingIntent. That works just fine. How do I similarly attach an
event handler to the button so that when it is pressed a second time,
it shuts the service down? Is there an appropriate pattern to follow
for something like this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
getBroadcast()
PendingIntent
,其中BroadcastReceiver
调用stopService()
。或者,使用
getService()
PendingIntent
,在其中向具有服务调用stopSelf()
的服务发送命令。或者,将服务切换到
IntentService
,这样它就会自动关闭(如果这对于您的场景来说是更好的服务实现)。Use a
getBroadcast()
PendingIntent
, where theBroadcastReceiver
callsstopService()
.Or, use a
getService()
PendingIntent
, where you send a command to your service that has the service callstopSelf()
.Or, switch the service to an
IntentService
, so it shuts down automatically, if that is a better service implementation for your scenario.