谁能告诉我为什么在eclipse中未定义speakToUser。我无法在网上获得太多帮助。
我编写了一个扩展AccessibilityService的abcAccService类,从开发人员站点获取代码,我想使用speakToUser函数。但是我在Eclipse中得到了未定义的函数。这可能是什么原因。

谢谢

最佳答案

我相信这是您指的the code

// Do something nifty with this text, like speak the composed string
// back to the user.
speakToUser(eventText);
...


那不是真正的方法。他们没有清楚地解释它,但这只是您需要编写自己的理论方法。



要创建speakToUser()方法,您需要使用TextToSpeech类,您可以遵循tutorial来帮助您。 SDK中甚至包含一个示例项目,在Eclipse中,请转到:


New -> Other...
然后Android > Android Sample Project
最终选择TtsEngine

10-08 18:50