从服务调用 RecognizerIntent
我正在开发 Android 服务。 我需要从服务调用 RecognizerIntent 才能在服务中使用识别的文本。我在 Service 类中没有 startActivityForResult() 方法,因此我无法理解如何完成此任务。是否可以?
非常感谢
I am working on an Android service.
I need to call RecognizerIntent from a service in order to use in the service the recognized text. I have no startActivityForResult() method in Service class so I have problem understanding how to achieve this task. Is it possible?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,我不相信这是可能的。毕竟,服务没有 UI,而 RecognizerIntent 需要 UI 才能发挥作用。
No, I do not believe it is possible. After all, there is no UI from a service, and the
RecognizerIntent
needs a UI in order to function.