错误消息
构造函数TextToSpeech(SQLiteExample,SQLiteExample)未定义
04-16 04:06:19.860:E / AndroidRuntime(1728):引起:java.lang.ClassCastException:com.sql.SQLiteExample
错误行
myTts = new TextToSpeech(this, this);
onCreate方法中的
答案 0 :(得分:0)
错误的是你没有在TextToSpeech
中传递正确的参数。作为文档says:
TextToSpeech (Context context, TextToSpeech.OnInitListener listener)
context :此实例正在运行的上下文。
listener :TextToSpeech引擎初始化时将调用的TextToSpeech.OnInitListener。