如何检查TtsService(或Android服务)是否停止?
由于超出我的应用的控制范围,TtsService
被系统停止,仅在 LogCat 中提供 Log.i() 提示:
05-01 12:01:55.662: INFO/TtsService(1791): Stopping
05-01 12:01:55.662: INFO/TtsService(1791): Stopped
我希望能够从我的应用程序内处理这种情况。
有没有办法(回调或系统调用)来检测这种情况何时发生?
如果没有,有没有办法检查 TTS 服务是否正在运行?
For reasons beyond my app's control, TtsService
is stopped by the system, providing only Log.i() hints in LogCat:
05-01 12:01:55.662: INFO/TtsService(1791): Stopping
05-01 12:01:55.662: INFO/TtsService(1791): Stopped
I would like to be able to handle this situation from within my app.
Is there a way (a callback or a system call) to detect when this happens?
If not, is there a way to check whether the TTS service is running?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下方法检查服务是否正在运行。
You can use following method to check whether service is running or not.