如何停止或完成被调用服务的活动?
在我的应用程序中,当调用服务(BackgroundService.java)时,我需要停止活动(MyAct.java),并且进一步我希望继续此服务(BackgroundService.java)。请帮忙?
In my app I am required to Stop the activity(MyAct.java) when a service(BackgroundService.java) is called, and further i wish to continue this service(BackgroundService.java).please help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现已启动的服务,在您的活动中调用startService(Intent service) (例如,按下按钮)然后立即在您的活动中调用 finish() 。
请查看此处,了解如何创建长时间运行的后台服务,甚至不需要启动服务的活动。
Implement a started service, call startService(Intent service) in your activity(for instance, a button pressed) then call finish() immediately in your activity.
Check out here to see how to create a long running background service, even without need a activity to start the service.