我正在遵循本教程,在我的应用程序中实现文本到语音的实现
http://www.androidhive.info/2012/01/android-text-to-speech-tutorial/
言论激烈。请参考下面的图片
添加代码后
答案 0 :(得分:0)
更改以下代码: -
TextToSpeech textSpeach = new TextToSpeech(this, this);
更改为
TextToSpeech textSpeach = new TextToSpeech(this, new TextToSpeech.OnInitListener() {
@Override
public void onInit(int status) {
}
});
问题原因 : - 您正在this
的参数中传递上下文TextToSpeech
,因此出现此问题,其次是TextToSpeech