标签: java android text-to-speech
我写了一个小聊天客户端,它使用了android的活动和服务设计。
客户端运行的主要时间,只有服务在后台运行,并且通知新消息。现在我的问题:服务应该在内部TTS系统的帮助下说出这个消息,但是我没有如何从服务中构建一个“新的TextToSpeech()”!
是否有可能在没有活动的情况下创建一个?如果,怎么样?
问候基督徒
答案 0 :(得分:0)
请参阅Android开发人员TextToSpeech链接Here。
下面的TextToSpeech构造函数。
TextToSpeech(Context context, TextToSpeech.OnInitListener listener) The constructor for the TextToSpeech class.
示例代码参考Here。